3

我已经创建了一个 PDO 数据库类,用于在 MS Access 数据库上运行查询。在使用日期条件进行查询时,如 SQL 中常见的那样,日期作为字符串传递。然而,Access 通常希望日期被散列包围。例如

SELECT transactions.amount FROM transactions WHERE transactions.date = #2013-05-25#;

如果我在哪里使用 PDO 运行此查询,我可能会执行以下操作。

//instatiate pdo connection etc... resulting in a $db object
$stmt = $db->prepare('SELECT transactions.amount FROM transactions WHERE transactions.date = #:mydate#;'); //prepare the query
$stmt->bindValue('mydate', '2013-05-25', PDO::PARAM_STR); //bind the date as a string
$stmt->execute(); //run it
$result = $stmt->fetch(); //get the results

据我了解,上述结果的语句看起来像这样,因为绑定字符串会导致它被引号包围:

SELECT transactions.amount FROM transactions WHERE transactions.date = #'2013-05-25'#;

这会导致错误并阻止语句运行。

在 PDO 中绑定日期字符串而不导致此错误的最佳方法是什么?我目前正在sprintf使用我确定是不好的做法的字符串。

编辑:如果我通过哈希包围的日期,那么我仍然会收到如下错误:

致命错误:未捕获的异常“PDOException”,带有消息“SQLSTATE[22018]:强制转换规范的字符值无效:-3030 [Microsoft][ODBC Microsoft Access Driver] 标准表达式中的数据类型不匹配。(SQLExecute[-3030] at ext\pdo_odbc\odbc_stmt.c:254)' 在 C:\xampp\htdocs\ips\php\classes.php:49 堆栈跟踪:#0 C:\xampp\htdocs\ips\php \classes.php(49): PDOStatement->execute() #1 C:\xampp\htdocs\ips\php\classes.php(52): 数据库->execute() #2 C:\xampp\htdocs\ips \try2.php(12): database->resultset() #3 {main} 在第 49 行的 C:\xampp\htdocs\ips\php\classes.php 中抛出

4

2 回答 2

1

通常,当使用准备好的语句或参数化查询时,您无需担心分隔字符串和日期值;所有这些都是在“幕后”为您处理的。

我刚刚尝试了以下方法,它对我有用:

<?php
$connStr = 
        'odbc:Driver={Microsoft Access Driver (*.mdb, *.accdb)};' .
        'Dbq=C:\\Users\\Gord\\Desktop\\Database1.accdb;' .
        'Uid=Admin;Pwd=;';

$dbh = new PDO($connStr);

$sql = 
        "INSERT INTO tblDateTest (dateCol) VALUES (?)";

$newDateTimeValue = "2013-06-30 17:18:19";

$sth = $dbh->prepare($sql);
if ($sth->execute(array($newDateTimeValue))) {
    echo "Done\r\n";
}
else {
    $arr = $sth->errorInfo();
    print_r($arr);
}
于 2013-07-01T16:18:22.263 回答
0

您应该将日期(整个值)放入bindValue方法中。例子:

$stmt = $db->prepare('SELECT transactions.amount FROM transactions WHERE transactions.date = :mydate'); //prepare the query
$stmt->bindValue('mydate', '#2013-05-25#', PDO::PARAM_STR); //bind the date as a string
于 2013-07-01T16:03:40.100 回答