obcd_prepare使用?和一个字符串

时间:2013-06-29 05:30:58

标签: sql odbc

我有一个让我发疯的问题。 根据官方文档,“如果您希望存储实际以单引号开头和结尾的字符串,则必须在参数的开头或结尾添加空格或其他非单引号字符,这将阻止参数从被视为文件名。“ (http://www.php.net/manual/en/function.odbc-execute.php

但我绝对无法使其发挥作用。这是我的代码:

$sql = "INSERT into MYTABLE values (?, 0, getdate())";
$prepare = odbc_prepare($connection, $sql);
$aaa = "aaa";
$a = odbc_execute($prepare, array($aaa)); /* here is the issue */

我该如何解决?谢谢

0 个答案:

没有答案