Can an autovalue primary key be created with PostgreSQL? [closed]
Using LibreOffice: Version 4.0.3.3 (Build ID: 400m0(Build:3)) on Ubuntu Raring.
In LibreOffice base with an external PostgreSQL database through the native driver, when I set integer primary keys with autovalue, the autovalue was not done when the tables were created.
Is this a known problem?
Would the autovalue be done properly if I use the PostgreSQL JDBC driver?
Autovalue integer primary keys do work with PostgreSQL through the JDBC driver, postgresql-9.2-1002.jdbc4.jar Here is what I did: 1) type is integer(serial). 2) Set autovalue. The type is created as serial in PostgreSQL. I'm not sure if this can be done with the native driver, but for now I will assume that the JDBC PostgreSQL driver is the one to use.