in reply to Re: DBI and SQLite's .read feature
in thread DBI and SQLite's .read feature

You don't even need to scan the incoming SQL file for CREATE TABLE statements. The DBI $dbh->table_info( method will give you all tables in a database, and for an SQLite database, most of these tables will inevitably belong to one of the SQL files.

Replies are listed 'Best First'.
Re^3: DBI and SQLite's .read feature
by Marshall (Canon) on Jan 26, 2017 at 12:22 UTC
    Your post is completely correct.

    I am not sure what the OP's "real problem" is. A better explanation of the "work flow" would help a lot.