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
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="SQLite3Result" namespace="" name="SQLite3Result">
<method name="columnName" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns the name of the nth column"/>
<return type="string"/>
</docblock>
<parameter name="column_number" optional="false" byreference="false" type="int"/>
</method>
<method name="columnType" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns the type of the nth column"/>
<return type="int"/>
</docblock>
<parameter name="column_number" optional="false" byreference="false" type="int"/>
</method>
<method name="fetchArray" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact=" Fetches a result row as an associative or numerically indexed array or both "/>
<return type="array"/>
</docblock>
<parameter name="mode" optional="true" byreference="false" type="int"/>
</method>
<method name="finalize" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Closes the result set"/>
<return type="bool"/>
</docblock>
</method>
<method name="numColumns" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns the number of columns in the result set"/>
<return type="int"/>
</docblock>
</method>
<method name="reset" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Resets the result set back to the first row"/>
<return type="bool"/>
</docblock>
</method>
</class>
|