Hele
|
| Posted: 05/26/2005, 1:05 PM |
|
Hi!
Which is the sentence to call a stored procedure with no input parameter from Code Charge using PHP.
I using this sentence and it does not work
$this->cp["RETURN_VALUE"] = new clsSQLParameter("urlRETURN_VALUE", ccsInteger, "", "", CCGetFromGet("RETURN_VALUE", ""), "", false, $this->ErrorBlock);
$this->SQL = "EXEC SC0020_Busca_Canti_Perio (" . ");";
Thaks for the help!
|
|
|
 |
Nicole
Posts: 586
|
| Posted: 05/27/2005, 2:01 AM |
|
There’s no anything special in calling stored procedure in PHP. Use query() function if database connection as if you execute normal sql query, e.g.
$db = new clsDB<connection_name>();
$db->query("SC0020_Busca_Canti_Perio");
_________________
Regards,
Nicole |
 |
 |
|