ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:reference:connection:prepare

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
v5:reference:prepare [2016/01/17 01:40] – ↷ Links adapted because of a move operation mnewnhamv5:reference:connection:prepare [2019/08/09 15:42] (current) – [Usage] Fix execute call per https://github.com/ADOdb/ADOdb/issues/543 dregad
Line 2: Line 2:
 ~~NOTOC~~ ~~NOTOC~~
 <WRAP info> <WRAP info>
-Support for this function is limited. See the feature compatibility matrix+Support for this function is limited. See the [[v5:database:feature_comparison]].
 </WRAP> </WRAP>
 <WRAP right box 250px> <WRAP right box 250px>
 == See Also == == See Also ==
-[[v5:reference:preparesp]]\\+[[v5:reference:connection:preparesp]]\\
 [[v5:reference:connection:execute]] for an explanation of the bind variables [[v5:reference:connection:execute]] for an explanation of the bind variables
 == Syntax == == Syntax ==
Line 25: Line 25:
 <code php> <code php>
 /* /*
- * Connection to Oracle database+* Connection to Oracle database
 */ */
  
Line 33: Line 33:
  
 /* /*
-Send an array to execute+Execute the prepared statement
 */ */
-$result = $db->execute(array($handle,$bindVariables));+$result = $db->execute($handle, $bindVariables);
 </code> </code>
  
 For compatibility purposes, if the database does not support prepared statements, the SQL statement is returned into the ''$handle'' variable. When sent to the ''execute()'' function,  The statement will be parsed to include the variables, and the statement will execute the same as if passed without parameters, and as if the DBMS supported prepared statements. For compatibility purposes, if the database does not support prepared statements, the SQL statement is returned into the ''$handle'' variable. When sent to the ''execute()'' function,  The statement will be parsed to include the variables, and the statement will execute the same as if passed without parameters, and as if the DBMS supported prepared statements.
  
v5/reference/connection/prepare.1452991205.txt.gz · Last modified: 2017/04/21 11:33 (external edit)