函数: odbc.u32
计算图标
ODBCHandle:=ODBCOpen(WindowHandle,ErrorVar,"information","sa", "")
SQLString:="select name from user"
data:=ODBCExecute(odbchandle,SQLString)
其中的information是手动设置的DSN名称
寻找错误中.......
________________________
cain兄昨天和我说需要做设置如下:
dbType:="Microsoft Access Driver (*.mdb)"
dbList:="DSN=studentDSN;"
dbList:=dbList^"Description=My ODBC DSN;"
dbList:=dbList^"FIL=MS Access;"
dbList:=dbList^"DBQ="^FileLocation^"student.mdb;"
result:=tMsDBRegister(4, dbType, dbList)
______________________________
其实是不对的,因为上面这段代码只是代替手工自动设置数据源.如果用access数据库手工设置DSN后根本不需要上述代码,直接写ODBCHandle:=ODBCOpen(WindowHandle,ErrorVar,"DSN名称",,)就可以了.