PHP odbc_connect() 函数用法及示例
odbc_connect()函数连接到数据源。
语法
resource odbc_connect ( string $dsn , string $user , string $password [, int $cursor_type ] )
定义和用法
用于连接odbc数据源
返回值
成功时返回ODBC连接,否则返回false。
参数
序号 | 参数和说明 |
---|---|
1 | dsn 它包含有关连接的数据库源名称的信息 |
2 | user 它包含有关用户的信息 |
3 | password 它包含有关密码的信息 |
4 | cursor_type 它设置用于ODBC连接的游标类型 |