|
odbc_connectConnect to a datasource Description
resource odbc_connect
( string
$dsn
, string $user
, string $password
[, int $cursor_type
] )The connection id returned by this functions is needed by other ODBC functions. You can have multiple connections open at once as long as they either use different db or different credentials. With some ODBC drivers, executing a complex stored procedure may fail with an error similar to: "Cannot open a cursor on a stored procedure that has anything other than a single select statement in it". Using SQL_CUR_USE_ODBC may avoid that error. Also, some drivers don't support the optional row_number parameter in odbc_fetch_row. SQL_CUR_USE_ODBC might help in that case, too. Parameters
Return Values
Returns an ODBC connection or ( Examples
Example #1 DSN-less connections
<?php See Also
|