Programmer Guide : solidDB® supported ODBC functions : Submitting requests
  
Submitting requests
SQLExecute
Executes a prepared statement using the current values of the parameter marker variables if any parameter markers exist in the statement.
Version introduced: 1.0
Availability when using ODBC: Supported
Conformance: ISO 92
SQLExecDirect
Executes a preparable statement using the current values of the parameter marker variables if any parameters exist in the statement. SQLExecDirect is the fastest way to submit an SQL statement for one-time execution.
Version introduced: 1.0
Availability when using ODBC: Supported
Conformance: ISO 92
SQLNativeSQL
Returns the SQL string as modified by the driver. SQLNativeSQL does not execute the SQL statement.
Version introduced: 1.0
Availability when using ODBC: Not implemented; solidDB® does not support this functionality.
Conformance: N/A
SQLDescribeParam
Returns the text of an SQL statement as translated by the driver. This information is also available in the fields of the IPD.
Version introduced: 1.0
Availability when using ODBC: Supported
Conformance: ODBC
SQLNumParams
Returns the number of parameters in an SQL statement.
Version introduced: 1.0
Availability when using ODBC: Supported
Conformance: ISO 92
SQLParamData
Used in conjunction with SQLPutData to supply parameter data at execution time. (Useful for long data values.)
Version introduced: 1.0
Availability when using ODBC: Supported
Conformance: ISO 92
SQLPutData
Allows an application to send data for a parameter or column to the driver at statement execution time. This function can be used to send character or binary data values in parts to a column with a character, binary, or data source-specific data type (for example, parameters of the SQL_LONGVARBINARY or SQL_LONGVARCHAR types).
Version introduced: 1.0
Availability when using ODBC: Supported
Conformance: ISO 92
See also
solidDB® supported ODBC functions