Subject: | DBIx::Class::Schema::Loader::DBI::SQLite on win32 |
windows xp, strawberry perl 5.8.9
sqlite 3.5.9
In sub _sqlite_parse_tablable
# Cut "CREATE TABLE ( )" blabla...
$sql =~ /^[\w\s']+\((.*)\)$/si;
On windows sqlite returns the name of the table and the name of the
columns qoted with (") not(')
so the regexp needs to be changed
I'm currently using:
$sql =~ /^[\w\s'"]+\((.*)\)$/si;