xtybfgu 发表于 2008-5-25 17:36:59

数据库读取问题。。。

$addfld = ObjCreate("ADODB.Connection")
$addfld.Open("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" &$mdb_data_path)
$RS =ObjCreate("ADODB.Recordset")
$RS.ActiveConnection = $addfld
$tempData=""
$RS.Open ("Select "&$T & " From " & $tblname )
while Not $RS.eof And Not $RS.bof
if @error =1 Then ExitLoop
$tempData=$tempData&($RS.Fields("value").Value)&"|"
$rs.movenext
WEnd
$addfld.Close



这样去读取有错吗?

出来这个错误


[ 本帖最后由 xtybfgu 于 2008-5-25 17:48 编辑 ]

xtybfgu 发表于 2008-5-25 17:48:31

搞定了。。。。。

$addfld = ObjCreate("ADODB.Connection")
$addfld.Open("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" &$mdb_data_path)
$RS =ObjCreate("ADODB.Recordset")
$RS.ActiveConnection = $addfld
$tempData=""
$RS.Open ("Select "&$T & " From " & $tblname )
while Not $RS.eof And Not $RS.bof
if @error =1 Then ExitLoop
MsgBox(0, "", $RS.Fields (1).value);显示表第一个数据
$rs.movenext
WEnd
$addfld.Close


在别的地方看到了。。。
页: [1]
查看完整版本: 数据库读取问题。。。