standard.db.sql.ODBCColumnSet

ODBCColumnSet is available since version 1.0.

Prototype:

boolean ODBCColumnSet(number column_index, string new_value, number statement)

Parameters

column_index
[in] the index of the needed column
new_value
[in] the new value for the column
statement
[in] the statement handle (or result set) as returned by ODBCStatement, ODBCListTables, ODBCListColumns, ODBCListTypes or ODBCExecuteQuery

Description:

Update data in a column. After data is update, you ODBCUpdate should be called.

Note: Not all drivers support positional updates; positional updates are NOT recommended.

Return value:

Return true if succeeded, false if failed.