reference/sqlite3/sqlite3result/columntype.xml
855bfee2f3db70d7dbb4c60c7c4a4efa567f1c60
...
...
@@ -1,6 +1,5 @@
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<!-- $Revision$ -->
3
-

4
3
<refentry xml:id="sqlite3result.columntype" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
5
4
<refnamediv>
6
5
<refname>SQLite3Result::columnType</refname>
...
...
@@ -9,13 +8,13 @@
9
8

10
9
<refsect1 role="description">
11
10
&reftitle.description;
12
-
<methodsynopsis>
13
-
<modifier>public</modifier> <type>int</type><methodname>SQLite3Result::columnType</methodname>
14
-
<methodparam><type>int</type><parameter>column_number</parameter></methodparam>
11
+
<methodsynopsis role="SQLite3Result">
12
+
<modifier>public</modifier> <type class="union"><type>int</type><type>false</type></type><methodname>SQLite3Result::columnType</methodname>
13
+
<methodparam><type>int</type><parameter>column</parameter></methodparam>
15
14
</methodsynopsis>
16
15
<para>
17
16
Returns the type of the column identified by
18
-
<parameter>column_number</parameter>.
17
+
<parameter>column</parameter>.
19
18
</para>
20
19
</refsect1>
21
20

...
...
@@ -24,7 +23,7 @@
24
23
<para>
25
24
<variablelist>
26
25
<varlistentry>
27
-
<term><parameter>column_number</parameter></term>
26
+
<term><parameter>column</parameter></term>
28
27
<listitem>
29
28
<para>
30
29
The numeric zero-based index of the column.
...
...
@@ -40,15 +39,14 @@
40
39
&reftitle.returnvalues;
41
40
<para>
42
41
Returns the data type index of the column identified by
43
-
<parameter>column_number</parameter> (one of
42
+
<parameter>column</parameter> (one of
44
43
<constant>SQLITE3_INTEGER</constant>, <constant>SQLITE3_FLOAT</constant>,
45
44
<constant>SQLITE3_TEXT</constant>, <constant>SQLITE3_BLOB</constant>, or
46
-
<constant>SQLITE3_NULL</constant>).
45
+
<constant>SQLITE3_NULL</constant>), or &false; if the column does not exist.
47
46
</para>
48
47
</refsect1>
49
48

50
49
</refentry>
51
-

52
50
<!-- Keep this comment at the end of the file
53
51
Local variables:
54
52
mode: sgml
55
53