File: SQLite3Stmt.xml

package info (click to toggle)
phpdox 0.11.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,476 kB
  • sloc: xml: 66,377; php: 9,049; makefile: 18
file content (57 lines) | stat: -rw-r--r-- 2,637 bytes parent folder | download
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
<?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"/>
      <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"/>
      <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="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=""/>
      <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>