ODBC API常用函数诠释
2008-09-03 10:01:06 来源:WEB开发网integer Options 相关选项。
返回值:integer ,成功时,返回0,失败返回值小于0。
函数功能:释放SQL语句句柄。
12、function integer SQLDataSources(long henv,int fdirection,ref string szdsn, integer cbdsnmax,ref integer pcbdsn,ref string szdescription,integer cbdescriptionmax,ref integer pcbdescription)library "odbc32.dll"
参数:long henv ODBC数据源环境句柄。
int fdirection 方向标志 1(下一个),2(第一个),3(最后一个),4(前一个)
ref string szdsn 数据源名称
integer cbdsnmax数据源名称的最大长度
ref integer pcbdsn数据源名称的实际长度
ref string szdescription 数据源描述名称
integer cbdescriptionmax 数据源描述字符串的最大长度
ref integer pcbdescription数据源描述字符串的实际长度
返回值:integer ,成功时,返回0,失败返回值小于0。
函数功能:释放SQL语句句柄。
13、function integer SQLAllocConnect(long henv,ref long hdbc)library "odbc32.dll"
参数:long henv ODBC数据源环境句柄。
ref long hdbc 保存ODBC连接句柄。
返回值:integer ,成功时,返回0,失败返回值小于0。
函数功能:获取ODBC连接句柄。
上面总算将列出的几个ODBC API函数描述完,等有时间结合具体例子来说明如何利用ODBC API函数访问数据库了。
例程:
定义实例变量:
protected:
long henv//sql 环境句柄
long hstmt//sql语句句柄
long hdbc//sql 连接句柄
定义句柄外部函数引用:
function integer SQLAllocEnv(ref long phenv) library "odbc32.dll"
更多精彩
赞助商链接