Re: Create tables using Perl DBI

From: "Ross J(dot) Reedstrom" <reedstrm(at)rice(dot)edu>
To: David Coley <davidcoley(at)home(dot)com>
Cc: pgsql-interfaces(at)postgresql(dot)org
Subject: Re: Create tables using Perl DBI
Date: 2000-11-21 22:06:48
Message-ID: 20001121160648.A6279@rice.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Hmm, after reformating your SQL so I can read it, I found this:

"create table customer (
ID serial PRIMARY KEY,
name text NOT NULL,
email text NOT NULL,
phone text NOT NULL,
---> fax text DEFAULT,
address text NOT NULL,
---> address2 text DEFAULT,
zip text NOT NULL,
city text NOT NULL,
state text NOT NULL,
country text NOT NULL)"

What are you expecting to happen with DEFAULT with nothing after it?
That's the 'at or near ","' part. Either drop the DEFAULT or add a text
to default to.

Are you perhaps looking for NULL? (as apposed to NOT NULL?) It's allowed
in the grammar, but is the default, so you don't need it.

Ross

On Tue, Nov 21, 2000 at 04:50:54PM -0500, David Coley wrote:
> Hum... I tried adding that extra ) at end of the prepare:
>
> $sth = $dbh->prepare("create table customer (ID serial PRIMARY KEY, name
> text NOT NULL, email text NOT NULL, phone text NOT NULL, fax text DEFAULT,
> address text NOT NULL, address2 text DEFAULT, zip text NOT NULL, city text
> NOT NULL, state text NOT NULL, country text NOT NULL)")
> or die "Could not Create Table: $DBI::errstr";
> $sth->execute;
> #disconnect from the database.
> $dbh->disconnect();
>
> >
> > It looks like you're missing a ")" in there somewhere.
> > Parse error usually = syntax error.
> >
>
> Still the same error:
>
> DBD::Pg::st execute failed: ERROR: parser: parse error at or near ","
>
> David Coley
> davidcoley(at)home(dot)com
> http://www.davidcoley.com
>

In response to

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message David Coley 2000-11-21 22:20:57 RE: Create tables using Perl DBI
Previous Message David Coley 2000-11-21 21:50:54 RE: Create tables using Perl DBI