Quote Originally Posted by jacek View Post
Yes, it's a special data type. It's an equivalent of GreyGeek's solution, only shorter.

http://www.postgresql.org/docs/8.2/s...ATATYPE-SERIAL
Last week I upgraded from PostgreSQL 8.1.4 to 8.2 on my W2K workstation. My compiles stopped with an error while attempting to load a dll.

qsqlpsql.dll loaded ssleay32.dll which loaded leay32.dll which failed because the first dll was looking for functions which weren't present on one of the secure shell dlls. Dependencychecker showed the problem, but I am at home and don't have access to my notes. But, basically, when Qt attempts to load a library and it fails, it is marked so that it won't load again until the library is recompiled, or at least touched, so that the timestamp changes. Then Qt will attempt to load it again.

When I reverted back to 8.1.4 Qt4.2.2 apps compiled OK.