Skip Menu |

This queue is for tickets about the DBIx-Class-Schema-Loader CPAN distribution.

Report information
The Basics
Id: 46379
Status: resolved
Priority: 0/
Queue: DBIx-Class-Schema-Loader

People
Owner: Nobody in particular
Requestors: burlo.stumproot [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.04006
Fixed in: (no value)



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;
As of 0.06000, regexps are no longer used to parse sqlite schemas, thanks to hobbs.