1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="SQLite3Stmt" namespace="" name="SQLite3Stmt">
<method name="bindParam" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Binds a parameter to a statement variable"/>
<return type="bool"/>
</docblock>
<parameter name="sql_param" optional="false" byreference="false" type="object" class="mixed"/>
<parameter name="param" optional="false" byreference="false" type="object" class="mixed"/>
<parameter name="type" optional="true" byreference="false" type="int"/>
</method>
<method name="bindValue" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Binds the value of a parameter to a statement variable">Binds the value of a parameter to a statement variable.</description>
<return type="bool"/>
</docblock>
<parameter name="sql_param" optional="false" byreference="false" type="object" class="mixed"/>
<parameter name="value" optional="false" byreference="false" type="object" class="mixed"/>
<parameter name="type" optional="true" byreference="false" type="int"/>
</method>
<method name="clear" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Clears all current bound parameters">Clears all current bound parameters (sets them to NULL).</description>
<return type="bool"/>
</docblock>
</method>
<method name="close" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Closes the prepared statement"/>
<return type="bool"/>
</docblock>
</method>
<method name="execute" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Executes a prepared statement and returns a result set object">Executes a prepared statement and returns a result set object.</description>
<return type="SQLite3Result"/>
</docblock>
</method>
<method name="getSQL" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Get the SQL of the statement"/>
<return type="string"/>
</docblock>
<parameter name="expanded" optional="true" byreference="false" type="object" class="bool"/>
</method>
<method name="paramCount" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns the number of parameters within the prepared statement"/>
<return type="int"/>
</docblock>
</method>
<method name="readOnly" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns whether a statement is definitely read only"/>
<return type="bool"/>
</docblock>
</method>
<method name="reset" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Resets the prepared statement"/>
<return type="bool"/>
</docblock>
</method>
</class>
|