PHP ODBC INSERT不起作用 - 没有错误

时间:2015-12-04 00:01:06

标签: php ms-access pdo odbc

为什么它不起作用?我没有错误,但结果也没有。

if($_SERVER["REQUEST_METHOD"] === "POST"){
$data_from_client = isset($_POST["data"]) && strlen($_POST["data"]) ? $_POST["data"] : null;
// Database path
$db = $_SERVER["SCRIPT_FILENAME"];
$db = str_replace("php/insert_query.php", "data/users/testuser.accdb", $db);
// Connect
$dbh = new PDO("odbc:Driver={Microsoft Access Driver (*.mdb, *.accdb)}; Dbq=$db; Uid=; Pwd=;");
// INSERT data
$count = $dbh->exec("INSERT INTO posts(username, date) VALUES ('Matthew', '2015')");
// echo the number of affected rows
echo $count;
// close the database connection
$dbh = null;

}

1 个答案:

答案 0 :(得分:1)

确定错误的性质:

[ -f "$file" ] && mv "$file" "${file}.0"