Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Perlで複数のsqliteデータベースを単一の$dbhにアタッチする方法は? コマンド ラインでは、インタラクティブな sqlite3 rpel でアタッチできますが、Perl の dbd-sqlite ではどうですか?
これが既にここで回答されている場合は申し訳ありませんが、perlmonks または同様のものですが、適切な回答を見つけることができませんでした。
do任意の SQL ステートメントを実行します。
do
$dbh->do('attach foobar as foobar');
foobarのテーブルはクエリ可能になります。
foobar