有没有办法检查表是否存在于 mdb 文件中?我使用 PHP 和 ADOdb 连接进行连接。
这是我的代码
$conn = new COM("ADODB.Connection");
$conn->open("DRIVER={Microsoft Access Driver (*.mdb)}; PWD=somepassword; DBQ=".dirname(__FILE__)."\filename.MDB;");
if (table exists){ \\ where i need the code to check
$createtable = $conn->execute("CREATE TABLE $tblname (fieldsample CHAR(1))");
}else{
$insertqry = $conn->execute("INSERT INTO $tblname (field) VALUES (value)");
}
一整天都在浏览语法,但到目前为止我所看到的都是针对 VB 和 ASP 的。