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
これを解決するための助けをいただければ幸いです。