Interested in improving this site? Please check the To Do page.

Back to SQLite Verbs

sqlite.getColumnText

Retrieve the column value for a text field

Syntax

sqlite.getColumnText(queryID, columnNumber)

Params

queryID is the query ID returned by sqlite.compileQuery. columnNumber is the number of the column.

Returns

A string containing the text value in that column (for the current row only)

Examples

s = sqlite.getColumnText(compiledQuery, i);

Notes

Remember that the first column is 1 in the Frontier routine sqlite.getColumnText but is a 0 in the original SQLite sqlite3_column_text function.

See Also


Personal Tools