我正在尝试使用PDO读取SQLite数据库然后插入MYSQL。
读取正在工作,并且在foreach中我可以回显SQLite数据但是当插入新数据库时没有记录任何内容并且根本没有插入数据。
try
{
$db = new PDO('sqlite:' . $passedFile);
$dbup = new PDO("mysql:host=localhost;port=8889;dbname=TestDB", "dbuser", "password");
//select all lines from the sqlite DB
$result = $db->query('SELECT * FROM TestDB');
foreach($result as $row)
{
$dbup->exec("INSERT INTO TestDB ('field1','field2','field3') VALUES ('" . $row['field1'] . "','" . $row['field2'] . "','" .$row['field3'] . "')");
}
// close the database connection
$db = NULL;
$dbup = NULL;
}
catch(PDOException $e)
{
print 'Exception : '.$e->getMessage();
}
答案 0 :(得分:1)
作为主意,而不是使用$dbup->exec($mysqlQuery)
试试$dbup->exec($mysqlQuery) or die(print_r($dbup->errorInfo(), true));