in reply to Re^2: Working with Postgresql serial data type in Perl
in thread Working with Postgresql serial data type in Perl

It's all in the excellent manual: datatype serial (also available in PDF )

Note that:

Prior to PostgreSQL 7.3, serial implied UNIQUE. This is no longer automatic. If you wish a serial column to have a unique constraint or be a primary key, it must now be specified, just like any other data type.

(Btw: a hint regarding the database name: call it postgresql, postgres, or even Pg, but calling it 'Postgre' makes the same impression as writing PERL instead of Perl).

  • Comment on Re^3: Working with Postgresql serial data type in Perl

Replies are listed 'Best First'.
Re^4: Working with Postgresql serial data type in Perl
by vendion (Scribe) on Dec 19, 2010 at 01:28 UTC

    Thanks for the help and also thanks for that hint, I will try to keep it in mind in the future.