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

Back to SQLite Verbs

sqlite.getColumn

Retrieve the value of the specified column element

Syntax

sqlite.getColumn(queryID, columnNumber)

Params

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

Returns

The value for that column element. This function is reasonable “smart” in that it doesn’t care what the data type for the column is, it’ll return whatever data type there is into a Frontier variable. You’re more likely to use this function than the various sqlite.getColumnXXXX typed functions.

Examples

value = sqlite.getColumn(compiledQuery, i);

Notes

Remember that the first column is 1 in the Frontier routine sqlite.getColumn.

See Also


Personal Tools