reneeb has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl use strict; use warnings; use SQL::Statement; my $statement = qq~CREATE TABLE test( ID int not null, Spalte1 varchar(255), Spalte2 int, Spalte3 int, Spalte4 int, Spalte5 blob, Spalte6 varchar(33), primary key(ID), )~; my $parser = SQL::Parser->new(); my $stmt = SQL::Statement->new($statement,$parser);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: problems using SQL::Statement
by Joost (Canon) on Jul 29, 2005 at 13:51 UTC | |
by reneeb (Chaplain) on Jul 29, 2005 at 14:35 UTC | |
by Solo (Deacon) on Jul 29, 2005 at 15:09 UTC | |
by jfroebe (Parson) on Jul 29, 2005 at 16:00 UTC | |
by reneeb (Chaplain) on Jul 29, 2005 at 16:28 UTC | |
by Solo (Deacon) on Jul 29, 2005 at 21:11 UTC | |
|
Re: problems using SQL::Statement
by jZed (Prior) on Jul 30, 2005 at 01:45 UTC |