From 63847496f14c813a5d80efd5b7de0f1294ffe1e3 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 16:07:11 +0200 Subject: Adding upstream version 3.45.1. Signed-off-by: Daniel Baumann --- www/c3ref/column_count.html | 140 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 140 insertions(+) create mode 100644 www/c3ref/column_count.html (limited to 'www/c3ref/column_count.html') diff --git a/www/c3ref/column_count.html b/www/c3ref/column_count.html new file mode 100644 index 0000000..08b4581 --- /dev/null +++ b/www/c3ref/column_count.html @@ -0,0 +1,140 @@ + + + + + +Number Of Columns In A Result Set + + + +
+ + + +
+
+Small. Fast. Reliable.
Choose any three. +
+ + +
+
+ + + +
+
+
+ + +
+

SQLite C Interface

+

Number Of Columns In A Result Set

+
+
+int sqlite3_column_count(sqlite3_stmt *pStmt);
+
+

+Return the number of columns in the result set returned by the +prepared statement. If this routine returns 0, that means the +prepared statement returns no data (for example an UPDATE). +However, just because this routine returns a positive number does not +mean that one or more rows of data will be returned. A SELECT statement +will always have a positive sqlite3_column_count() but depending on the +WHERE clause constraints and the table content, it might return no rows.

+ +

See also: sqlite3_data_count() +

See also lists of + Objects, + Constants, and + Functions.

+ -- cgit v1.2.3