Re: Testing SQL and friends

2006-02-27 Thread Michael Peters
Ovid wrote: > Hi all, > > I'm not proposing to write a Test::SQL module, but I am tired of having > the following two things not being equivalent: > > CREATE TABLE foo ( > id INTEGER NOT NULL PRIMARY KEY, > name VARCHAR(32) NOT NULL, > title > age INTEGER > ); >

Testing SQL and friends

2006-02-27 Thread Ovid
Hi all, I'm not proposing to write a Test::SQL module, but I am tired of having the following two things not being equivalent: CREATE TABLE foo ( id INTEGER NOT NULL PRIMARY KEY, name VARCHAR(32) NOT NULL, title age INTEGER ); And: create table foo ( id