PHP ODBC执行试图打开一个文件

时间:2015-08-14 16:13:23

标签: php csv odbc teradata

由于某些原因,此代码导致odbc_execute();尝试打开文件...

$file = fopen('somefile.csv', 'r');
fgetcsv($file); // Skip the first line
$data = [];
while (($line = fgetcsv($file)) != false) {
    $data[] = $line;
}
fclose($file);

try {
    $conn = odbc_connect("Teradata", "User", "Pass");
    odbc_autocommit($conn, false);

    odbc_exec($conn, 'DELETE FROM table');

    foreach ($data as &$test) {
        $stmt = odbc_prepare($conn, 'INSERT INTO table (experiment_code, experiment_name, variant_code, variant_name, version_number, report_start_date, report_end_date, status, transaction_date, experiment_test_id, test_manager, product_manager, pod, created_date, last_updated_date) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)');
        odbc_execute($stmt, $test);
    }

    odbc_commit($conn);

    $result = odbc_exec($conn, 'SELECT * FROM table');
    odbc_result_all($result);
} catch (Exception $e) {
    odbc_rollback($conn);
    echo $e->getMessage();
}

以下是CSV文件的剪辑...

H1225,Some random text,H1225:001.000,Control,3,02/06/2014,03/31/2014,Completed,,HMVT-1225,Some random name,Some random name,Checkout,03/31/2014 16:54,02/06/2014 16:38
H1225,Some random text,H1225:001.000,Control,3,02/06/2014,03/31/2014,Completed,,HMVT-1225,Some random name,Some random name,Checkout,03/31/2014 16:54,02/06/2014 16:38

这是我得到的错误类型......

Warning: odbc_execute(): Can't open file Control in C:\wamp\www\HEXinput\assets\php\dumpCSV.php on line 19

我使用不同的文件名获得同一错误的多个版本。文件名似乎来自第3列(基于0)。另一个奇怪的是它实际上确实插入了一些正确的行。

我得到的最后一个错误是......

Fatal error: Maximum execution time of 120 seconds exceeded in C:\wamp\www\HEXinput\assets\php\dumpCSV.php on line 27

我在Windows 7 64位上使用Teradatas ODBC Drivers for 15。

导致这种情况的原因是什么?

1 个答案:

答案 0 :(得分:0)

事实证明,CSV文件中的某些字段中包含单引号,这会破坏查询。

简单而烦人的疏忽。