odbc_pconnect
长期链接至 ODBC 数据库。 
语法: int odbc_pconnect(string dsn, string user, string password, int [cursor_type]); 
返回值: 整数 
函数种类: 数据库功能 
 本函数用来保持长期链接链接到 ODBC 数据库,即使 PHP 程序结束,链接仍然存在,返回值为链接的代号 ID 值。这对链接负责很重的系统可以加快链接的速度。参数 dsn 为资料来源名称 (Data Sources Name)。参数 user 及 password 分别为链接的帐号及密码。参数 cursor_type 通常省略。 
 odbc_connect()   
 
  |