別の既存の SQLite データベースからデータベースの 1 つのテーブルをインポートする PHP/PDO を使用して SQLite データベースを作成するにはどうすればよいでしょうか?
これは私が疑似コードでこれまでに考えたことです:
$existing_database = 'database1.sqlite';
try
{
$dbhandle = new PDO('sqlite:database2.sqlite');
$dbhandle->exec("CREATE TABLE new_table IMPORT table from $existing_database");
$dbhandle = NULL;
}
catch(PDOException $e)
{
print 'Exception : '.$e->getMessage();
}