The ODBC connection identifier, * see odbc_connect for details.
* @param bool $OnOff [optional]* If OnOff is TRUE, auto-commit is enabled, if * it is FALSE auto-commit is disabled. *
* @return mixed Without the OnOff parameter, this function returns * auto-commit status for connection_id. Non-zero is * returned if auto-commit is on, 0 if it is off, or FALSE if an error * occurs. ** If OnOff is set, this function returns TRUE on * success and FALSE on failure. *
*/ function odbc_autocommit($connection_id, $OnOff = false) {} /** * Handling of binary column data * @link https://php.net/manual/en/function.odbc-binmode.php * @param resource $result_id* The result identifier. *
** If result_id is 0, the * settings apply as default for new results. * Default for longreadlen is 4096 and * mode defaults to * ODBC_BINMODE_RETURN. Handling of binary long * columns is also affected by odbc_longreadlen. *
* @param int $mode* Possible values for mode are: * ODBC_BINMODE_PASSTHRU: Passthru BINARY data *
* @return bool TRUE on success or FALSE on failure. */ function odbc_binmode($result_id, $mode) {} /** * Close an ODBC connection * @link https://php.net/manual/en/function.odbc-close.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @return void No value is returned. */ function odbc_close($connection_id) {} /** * Close all ODBC connections * @link https://php.net/manual/en/function.odbc-close-all.php * @return void No value is returned. */ function odbc_close_all() {} /** * Lists the column names in specified tables * @link https://php.net/manual/en/function.odbc-columns.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @param string $qualifier [optional]* The qualifier. *
* @param string $schema [optional]* The owner. *
* @param string $table_name [optional]* The table name. *
* @param string $column_name [optional]* The column name. *
* @return resource|false an ODBC result identifier or FALSE on failure. ** The result set has the following columns: * TABLE_QUALIFIER * TABLE_SCHEM * TABLE_NAME * COLUMN_NAME * DATA_TYPE * TYPE_NAME * PRECISION * LENGTH * SCALE * RADIX * NULLABLE * REMARKS *
** The result set is ordered by TABLE_QUALIFIER, TABLE_SCHEM and * TABLE_NAME. *
*/ function odbc_columns($connection_id, $qualifier = null, $schema = null, $table_name = null, $column_name = null) {} /** * Commit an ODBC transaction * @link https://php.net/manual/en/function.odbc-commit.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @return bool TRUE on success or FALSE on failure. */ function odbc_commit($connection_id) {} /** * Connect to a datasource * @link https://php.net/manual/en/function.odbc-connect.php * @param string $dsn* The database source name for the connection. Alternatively, a * DSN-less connection string can be used. *
* @param string $user* The username. *
* @param string $password* The password. *
* @param int $cursor_type [optional]* This sets the type of cursor to be used * for this connection. This parameter is not normally needed, but * can be useful for working around problems with some ODBC drivers. *
** The following constants are defined for cursortype: * SQL_CUR_USE_IF_NEEDED *
* @return resource|false an ODBC connection or (FALSE) on error. */ function odbc_connect($dsn, $user, $password, $cursor_type = null) {} /** * Get cursorname * @link https://php.net/manual/en/function.odbc-cursor.php * @param resource $result_id* The result identifier. *
* @return string the cursor name, as a string. */ function odbc_cursor($result_id) {} /** * Returns information about a current connection * @link https://php.net/manual/en/function.odbc-data-source.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @param int $fetch_type* The fetch_type can be one of two constant types: * SQL_FETCH_FIRST, SQL_FETCH_NEXT. * Use SQL_FETCH_FIRST the first time this function is * called, thereafter use the SQL_FETCH_NEXT. *
* @return array|false FALSE on error, and an array upon success. */ #[ArrayShape(["server" => "string", "description" => "string"])] function odbc_data_source($connection_id, $fetch_type) {} /** * Execute a prepared statement * @link https://php.net/manual/en/function.odbc-execute.php * @param resource $result_id* The result id resource, from odbc_prepare. *
* @param array $parameters_array [optional]* Parameters in parameter_array will be * substituted for placeholders in the prepared statement in order. * Elements of this array will be converted to strings by calling this * function. *
** Any parameters in parameter_array which * start and end with single quotes will be taken as the name of a * file to read and send to the database server as the data for the * appropriate placeholder. *
* If you wish to store a string which actually begins and ends with * single quotes, you must add a space or other non-single-quote character * to the beginning or end of the parameter, which will prevent the * parameter from being taken as a file name. If this is not an option, * then you must use another mechanism to store the string, such as * executing the query directly with odbc_exec). * @return bool TRUE on success or FALSE on failure. */ function odbc_execute($result_id, array $parameters_array = null) {} /** * Get the last error code * @link https://php.net/manual/en/function.odbc-error.php * @param resource $connection_id [optional]The ODBC connection identifier, * see odbc_connect for details.
* @return string If connection_id is specified, the last state * of that connection is returned, else the last state of any connection * is returned. ** This function returns meaningful value only if last odbc query failed * (i.e. odbc_exec returned FALSE). *
*/ function odbc_error($connection_id = null) {} /** * Get the last error message * @link https://php.net/manual/en/function.odbc-errormsg.php * @param resource $connection_id [optional]The ODBC connection identifier, * see odbc_connect for details.
* @return string If connection_id is specified, the last state * of that connection is returned, else the last state of any connection * is returned. ** This function returns meaningful value only if last odbc query failed * (i.e. odbc_exec returned FALSE). *
*/ function odbc_errormsg($connection_id = null) {} /** * Prepare and execute an SQL statement * @link https://php.net/manual/en/function.odbc-exec.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @param string $query_string* The SQL statement. *
* @param int $flags [optional]* This parameter is currently not used. *
* @return resource|false an ODBC result identifier if the SQL command was executed * successfully, or FALSE on error. */ function odbc_exec($connection_id, $query_string, #[PhpStormStubsElementAvailable(from: '5.3', to: '7.4')] $flags = null) {} /** * Fetch a result row as an associative array * @link https://php.net/manual/en/function.odbc-fetch-array.php * @param resource $result* The result resource from odbc_exec. *
* @param int $rownumber [optional]* Optionally choose which row number to retrieve. *
* @return array|false an array that corresponds to the fetched row, or FALSE if there * are no more rows. */ function odbc_fetch_array($result, $rownumber = null) {} /** * Fetch a result row as an object * @link https://php.net/manual/en/function.odbc-fetch-object.php * @param resource $result* The result resource from odbc_exec. *
* @param int $rownumber [optional]* Optionally choose which row number to retrieve. *
* @return object|false an object that corresponds to the fetched row, or FALSE if there * are no more rows. */ function odbc_fetch_object($result, $rownumber = null) {} /** * Fetch a row * @link https://php.net/manual/en/function.odbc-fetch-row.php * @param resource $result_id* The result identifier. *
* @param int $row_number [optional]* If row_number is not specified, * odbc_fetch_row will try to fetch the next row in * the result set. Calls to odbc_fetch_row with and * without row_number can be mixed. *
** To step through the result more than once, you can call * odbc_fetch_row with * row_number 1, and then continue doing * odbc_fetch_row without * row_number to review the result. If a driver * doesn't support fetching rows by number, the * row_number parameter is ignored. *
* @return bool TRUE if there was a row, FALSE otherwise. */ function odbc_fetch_row($result_id, $row_number = null) {} /** * Fetch one result row into array * @link https://php.net/manual/en/function.odbc-fetch-into.php * @param resource $result_id* The result resource. *
* @param array &$result_array* The result array * that can be of any type since it will be converted to type * array. The array will contain the column values starting at array * index 0. *
* @param int $rownumber [optional]* The row number. *
* @return int the number of columns in the result; * FALSE on error. */ function odbc_fetch_into($result_id, array &$result_array, $rownumber = null) {} /** * Get the length (precision) of a field * @link https://php.net/manual/en/function.odbc-field-len.php * @param resource $result_id* The result identifier. *
* @param int $field_number* The field number. Field numbering starts at 1. *
* @return int|false the field name as a string, or FALSE on error. */ function odbc_field_len($result_id, $field_number) {} /** * Get the scale of a field * @link https://php.net/manual/en/function.odbc-field-scale.php * @param resource $result_id* The result identifier. *
* @param int $field_number* The field number. Field numbering starts at 1. *
* @return int|false the field scale as a integer, or FALSE on error. */ function odbc_field_scale($result_id, $field_number) {} /** * Get the columnname * @link https://php.net/manual/en/function.odbc-field-name.php * @param resource $result_id* The result identifier. *
* @param int $field_number* The field number. Field numbering starts at 1. *
* @return string|false the field name as a string, or FALSE on error. */ function odbc_field_name($result_id, $field_number) {} /** * Datatype of a field * @link https://php.net/manual/en/function.odbc-field-type.php * @param resource $result_id* The result identifier. *
* @param int $field_number* The field number. Field numbering starts at 1. *
* @return string|false the field type as a string, or FALSE on error. */ function odbc_field_type($result_id, $field_number) {} /** * Return column number * @link https://php.net/manual/en/function.odbc-field-num.php * @param resource $result_id* The result identifier. *
* @param string $field_name* The field name. *
* @return int|false the field number as a integer, or FALSE on error. * Field numbering starts at 1. */ function odbc_field_num($result_id, $field_name) {} /** * Free resources associated with a result * @link https://php.net/manual/en/function.odbc-free-result.php * @param resource $result_id* The result identifier. *
* @return bool Always returns TRUE. */ function odbc_free_result($result_id) {} /** * Retrieves information about data types supported by the data source * @link https://php.net/manual/en/function.odbc-gettypeinfo.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @param int $data_type [optional]* The data type, which can be used to restrict the information to a * single data type. *
* @return resource|false an ODBC result identifier or * FALSE on failure. ** The result set has the following columns: * TYPE_NAME * DATA_TYPE * PRECISION * LITERAL_PREFIX * LITERAL_SUFFIX * CREATE_PARAMS * NULLABLE * CASE_SENSITIVE * SEARCHABLE * UNSIGNED_ATTRIBUTE * MONEY * AUTO_INCREMENT * LOCAL_TYPE_NAME * MINIMUM_SCALE * MAXIMUM_SCALE *
** The result set is ordered by DATA_TYPE and TYPE_NAME. *
*/ function odbc_gettypeinfo($connection_id, $data_type = null) {} /** * Handling of LONG columns * @link https://php.net/manual/en/function.odbc-longreadlen.php * @param resource $result_id* The result identifier. *
* @param int $length* The number of bytes returned to PHP is controlled by the parameter * length. If it is set to 0, Long column data is passed through to the * client. *
* @return bool TRUE on success or FALSE on failure. */ function odbc_longreadlen($result_id, $length) {} /** * Checks if multiple results are available * @link https://php.net/manual/en/function.odbc-next-result.php * @param resource $result_id* The result identifier. *
* @return bool TRUE if there are more result sets, FALSE otherwise. */ function odbc_next_result($result_id) {} /** * Number of columns in a result * @link https://php.net/manual/en/function.odbc-num-fields.php * @param resource $result_id* The result identifier returned by odbc_exec. *
* @return int the number of fields, or -1 on error. */ function odbc_num_fields($result_id) {} /** * Number of rows in a result * @link https://php.net/manual/en/function.odbc-num-rows.php * @param resource $result_id* The result identifier returned by odbc_exec. *
* @return int the number of rows in an ODBC result. * This function will return -1 on error. */ function odbc_num_rows($result_id) {} /** * Open a persistent database connection * @link https://php.net/manual/en/function.odbc-pconnect.php * @param string $dsn * @param string $user * @param string $password * @param int $cursor_type [optional] * @return resource|false an ODBC connection id or 0 (FALSE) on * error. */ function odbc_pconnect($dsn, $user, $password, $cursor_type = null) {} /** * Prepares a statement for execution * @link https://php.net/manual/en/function.odbc-prepare.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @param string $query_string* The query string statement being prepared. *
* @return resource|false an ODBC result identifier if the SQL command was prepared * successfully. Returns FALSE on error. */ function odbc_prepare($connection_id, $query_string) {} /** * Get result data * @link https://php.net/manual/en/function.odbc-result.php * @param resource $result_id* The ODBC resource. *
* @param mixed $field* The field name being retrieved. It can either be an integer containing * the column number of the field you want; or it can be a string * containing the name of the field. *
* @return mixed the string contents of the field, FALSE on error, NULL for * NULL data, or TRUE for binary data. */ function odbc_result($result_id, $field) {} /** * Print result as HTML table * @link https://php.net/manual/en/function.odbc-result-all.php * @param resource $result_id* The result identifier. *
* @param string $format [optional]* Additional overall table formatting. *
* @return int|false the number of rows in the result or FALSE on error. * @deprecated 8.1 */ function odbc_result_all($result_id, $format = null) {} /** * Rollback a transaction * @link https://php.net/manual/en/function.odbc-rollback.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @return bool TRUE on success or FALSE on failure. */ function odbc_rollback($connection_id) {} /** * Adjust ODBC settings * @link https://php.net/manual/en/function.odbc-setoption.php * @param resource $id* Is a connection id or result id on which to change the settings. * For SQLSetConnectOption(), this is a connection id. * For SQLSetStmtOption(), this is a result id. *
* @param int $function* Is the ODBC function to use. The value should be * 1 for SQLSetConnectOption() and * 2 for SQLSetStmtOption(). *
* @param int $option* The option to set. *
* @param int $param* The value for the given option. *
* @return bool TRUE on success or FALSE on failure. */ function odbc_setoption($id, $function, $option, $param) {} /** * Retrieves special columns * @link https://php.net/manual/en/function.odbc-specialcolumns.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @param int $type When the type argument is SQL_BEST_ROWID, * odbc_specialcolumns returns the * column or columns that uniquely identify each row in the table. * When the type argument is SQL_ROWVER, * odbc_specialcolumns returns the column or columns in the * specified table, if any, that are automatically updated by the data source * when any value in the row is updated by any transaction. * @param string $qualifier* The qualifier. *
* @param string $owner* The owner. *
* @param string $table* The table. *
* @param int $scope* The scope, which orders the result set. *
* @param int $nullable* The nullable option. *
* @return resource|false an ODBC result identifier or FALSE on * failure. ** The result set has the following columns: * SCOPE * COLUMN_NAME * DATA_TYPE * TYPE_NAME * PRECISION * LENGTH * SCALE * PSEUDO_COLUMN *
*/ function odbc_specialcolumns($connection_id, $type, $qualifier, $owner, $table, $scope, $nullable) {} /** * Retrieve statistics about a table * @link https://php.net/manual/en/function.odbc-statistics.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @param string $qualifier* The qualifier. *
* @param string $owner* The owner. *
* @param string $table_name* The table name. *
* @param int $unique* The unique attribute. *
* @param int $accuracy* The accuracy. *
* @return resource|false an ODBC result identifier or FALSE on failure. ** The result set has the following columns: * TABLE_QUALIFIER * TABLE_OWNER * TABLE_NAME * NON_UNIQUE * INDEX_QUALIFIER * INDEX_NAME * TYPE * SEQ_IN_INDEX * COLUMN_NAME * COLLATION * CARDINALITY * PAGES * FILTER_CONDITION *
*/ function odbc_statistics($connection_id, $qualifier, $owner, $table_name, $unique, $accuracy) {} /** * Get the list of table names stored in a specific data source * @link https://php.net/manual/en/function.odbc-tables.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @param string $qualifier [optional]* The qualifier. *
* @param string $owner [optional]* The owner. Accepts search patterns ('%' to match zero or more * characters and '_' to match a single character). *
* @param string $name [optional]* The name. Accepts search patterns ('%' to match zero or more * characters and '_' to match a single character). *
* @param string $types [optional]* If table_type is not an empty string, it * must contain a list of comma-separated values for the types of * interest; each value may be enclosed in single quotes (') or * unquoted. For example, "'TABLE','VIEW'" or "TABLE, VIEW". If the * data source does not support a specified table type, * odbc_tables does not return any results for * that type. *
* @return resource|false an ODBC result identifier containing the information * or FALSE on failure. ** The result set has the following columns: * TABLE_QUALIFIER * TABLE_OWNER * TABLE_NAME * TABLE_TYPE * REMARKS *
*/ function odbc_tables($connection_id, $qualifier = null, $owner = null, $name = null, $types = null) {} /** * Gets the primary keys for a table * @link https://php.net/manual/en/function.odbc-primarykeys.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @param string $qualifier * @param string $owner * @param string $table * @return resource|false an ODBC result identifier or FALSE on failure. ** The result set has the following columns: * TABLE_QUALIFIER * TABLE_OWNER * TABLE_NAME * COLUMN_NAME * KEY_SEQ * PK_NAME *
*/ function odbc_primarykeys($connection_id, $qualifier, $owner, $table) {} /** * Lists columns and associated privileges for the given table * @link https://php.net/manual/en/function.odbc-columnprivileges.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @param string $qualifier* The qualifier. *
* @param string $owner* The owner. *
* @param string $table_name* The table name. *
* @param string $column_name* The column_name argument accepts search * patterns ('%' to match zero or more characters and '_' to match a * single character). *
* @return resource|false an ODBC result identifier or FALSE on failure. * This result identifier can be used to fetch a list of columns and * associated privileges. ** The result set has the following columns: * TABLE_QUALIFIER * TABLE_OWNER * TABLE_NAME * GRANTOR * GRANTEE * PRIVILEGE * IS_GRANTABLE *
** The result set is ordered by TABLE_QUALIFIER, TABLE_OWNER and * TABLE_NAME. *
*/ function odbc_columnprivileges($connection_id, $qualifier, $owner, $table_name, $column_name) {} /** * Lists tables and the privileges associated with each table * @link https://php.net/manual/en/function.odbc-tableprivileges.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @param string $qualifier* The qualifier. *
* @param string $owner* The owner. Accepts the following search patterns: * ('%' to match zero or more characters and '_' to match a single character) *
* @param string $name* The name. Accepts the following search patterns: * ('%' to match zero or more characters and '_' to match a single character) *
* @return resource|false An ODBC result identifier or FALSE on failure. ** The result set has the following columns: * TABLE_QUALIFIER * TABLE_OWNER * TABLE_NAME * GRANTOR * GRANTEE * PRIVILEGE * IS_GRANTABLE *
*/ function odbc_tableprivileges($connection_id, $qualifier, $owner, $name) {} /** * Retrieves a list of foreign keys * @link https://php.net/manual/en/function.odbc-foreignkeys.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @param string $pk_qualifier* The primary key qualifier. *
* @param string $pk_owner* The primary key owner. *
* @param string $pk_table* The primary key table. *
* @param string $fk_qualifier* The foreign key qualifier. *
* @param string $fk_owner* The foreign key owner. *
* @param string $fk_table* The foreign key table. *
* @return resource|false an ODBC result identifier or FALSE on failure. ** The result set has the following columns: * PKTABLE_QUALIFIER * PKTABLE_OWNER * PKTABLE_NAME * PKCOLUMN_NAME * FKTABLE_QUALIFIER * FKTABLE_OWNER * FKTABLE_NAME * FKCOLUMN_NAME * KEY_SEQ * UPDATE_RULE * DELETE_RULE * FK_NAME * PK_NAME *
** If pk_table contains a table name, * odbc_foreignkeys returns a result set * containing the primary key of the specified table and all of the * foreign keys that refer to it. * If fk_table contains a table name, * odbc_foreignkeys returns a result set * containing all of the foreign keys in the specified table and the * primary keys (in other tables) to which they refer. * If both pk_table and * fk_table contain table names, * odbc_foreignkeys returns the foreign keys in * the table specified in fk_table that refer * to the primary key of the table specified in * pk_table *
*/ function odbc_foreignkeys($connection_id, $pk_qualifier, $pk_owner, $pk_table, $fk_qualifier, $fk_owner, $fk_table) {} /** * Get the list of procedures stored in a specific data source * @link https://php.net/manual/en/function.odbc-procedures.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @return resource|falsean ODBC * result identifier containing the information or FALSE on failure. *
** The result set has the following columns: * PROCEDURE_QUALIFIER * PROCEDURE_OWNER * PROCEDURE_NAME * NUM_INPUT_PARAMS * NUM_OUTPUT_PARAMS * NUM_RESULT_SETS * REMARKS * PROCEDURE_TYPE *
*/ function odbc_procedures($connection_id) {} /** * Retrieve information about parameters to procedures * @link https://php.net/manual/en/function.odbc-procedurecolumns.php * @param resource $connection_idThe ODBC connection identifier, * see odbc_connect for details.
* @return resource|falsethe list of input and output parameters, as well as the * columns that make up the result set for the specified procedures. * Returns an ODBC result identifier or FALSE on failure. *
** The result set has the following columns: * PROCEDURE_QUALIFIER * PROCEDURE_OWNER * PROCEDURE_NAME * COLUMN_NAME * COLUMN_TYPE * DATA_TYPE * TYPE_NAME * PRECISION * LENGTH * SCALE * RADIX * NULLABLE * REMARKS *
*/ function odbc_procedurecolumns($connection_id) {} /** * Alias of odbc_exec * @link https://php.net/manual/en/function.odbc-do.php * @param $connection_id * @param $query * @param $flags [optional] */ function odbc_do($connection_id, $query, $flags) {} /** * Alias of odbc_field_len * @link https://php.net/manual/en/function.odbc-field-precision.php * @param $result_id * @param $field_number */ function odbc_field_precision($result_id, $field_number) {} define('ODBC_TYPE', "unixODBC"); define('ODBC_BINMODE_PASSTHRU', 0); define('ODBC_BINMODE_RETURN', 1); define('ODBC_BINMODE_CONVERT', 2); define('SQL_ODBC_CURSORS', 110); define('SQL_CUR_USE_DRIVER', 2); define('SQL_CUR_USE_IF_NEEDED', 0); define('SQL_CUR_USE_ODBC', 1); define('SQL_CONCURRENCY', 7); define('SQL_CONCUR_READ_ONLY', 1); define('SQL_CONCUR_LOCK', 2); define('SQL_CONCUR_ROWVER', 3); define('SQL_CONCUR_VALUES', 4); define('SQL_CURSOR_TYPE', 6); define('SQL_CURSOR_FORWARD_ONLY', 0); define('SQL_CURSOR_KEYSET_DRIVEN', 1); define('SQL_CURSOR_DYNAMIC', 2); define('SQL_CURSOR_STATIC', 3); define('SQL_KEYSET_SIZE', 8); define('SQL_FETCH_FIRST', 2); define('SQL_FETCH_NEXT', 1); define('SQL_CHAR', 1); define('SQL_VARCHAR', 12); define('SQL_LONGVARCHAR', -1); define('SQL_DECIMAL', 3); define('SQL_NUMERIC', 2); define('SQL_BIT', -7); define('SQL_TINYINT', -6); define('SQL_SMALLINT', 5); define('SQL_INTEGER', 4); define('SQL_BIGINT', -5); define('SQL_REAL', 7); define('SQL_FLOAT', 6); define('SQL_DOUBLE', 8); define('SQL_BINARY', -2); define('SQL_VARBINARY', -3); define('SQL_LONGVARBINARY', -4); define('SQL_DATE', 9); define('SQL_TIME', 10); define('SQL_TIMESTAMP', 11); define('SQL_TYPE_DATE', 91); define('SQL_TYPE_TIME', 92); define('SQL_TYPE_TIMESTAMP', 93); define('SQL_WCHAR', -8); define('SQL_WVARCHAR', -9); define('SQL_WLONGVARCHAR', -10); define('SQL_BEST_ROWID', 1); define('SQL_ROWVER', 2); define('SQL_SCOPE_CURROW', 0); define('SQL_SCOPE_TRANSACTION', 1); define('SQL_SCOPE_SESSION', 2); define('SQL_NO_NULLS', 0); define('SQL_NULLABLE', 1); define('SQL_INDEX_UNIQUE', 0); define('SQL_INDEX_ALL', 1); define('SQL_ENSURE', 1); define('SQL_QUICK', 0); // End of odbc v.1.0