我正在使用 PHP 在可视 Foxpro 9 数据库中输入数据。
我的问题是 ODBC 驱动程序对备注字段施加了 255 个字符的限制。
我尝试使用以下方法来解决问题:
$sSQL = 'Insert Into detail (IT_DOC,IT_MEMO) values (?,?)';
$stmt = odbc_prepare($conn, $sSQL);
$res = odbc_execute($stmt, array($head['IT_DOC'] , $text));
但是,这给了我错误:
Warning: odbc_execute() [function.odbc-execute]: SQL error: [Microsoft][ODBC Driver Manager]
Driver does not support this function, SQL state IM001 in SQLDescribeParameter in C:\inetpub\wwwroot\import.php on line 149
任何解决此问题的帮助将不胜感激。