zhenglei 发表于 2011-1-19 19:34:55

问一下MDB数据库函数是什么意思???

Func _TableExists(ByRef $connectionobj, $s_dbname, $s_Table, $i_adoMDB = 1, $USRName = "", $PWD = "")
        Local $i_Exists
        $ar_GetTables = _GetTableNames($connectionobj, $s_dbname, $i_adoMDB, $USRName, $PWD)
        ;_ArrayDisplay($ar_GetTables,"")
        For $table In $ar_GetTables
                If $table = $s_Table Then $i_Exists = 1
        Next
        ;MsgBox(0,"",$i_Exists)
        Return $i_Exists
EndFunc   ;==>_TableExists


以上函数我想问一下$connectionobj是什么意思。 在函数中应该如何设置其变量值
页: [1]
查看完整版本: 问一下MDB数据库函数是什么意思???