Here's what I have done:
Installed postgresql 8.2 on XP Home (SP2)
Created a database
Created a table
Added two columns to the table (combined to make the key)
I then tried to add one row of data. I entered the text into both
columns. When I hit return, it crashed. The data is there when I
bri
Thank you for your post Dave. To answer your questions, the encoding is
SQL_ASCII. Here are the database and table definitions as well as the
table's contents:
CREATE DATABASE "Scrip"
WITH OWNER = postgres
ENCODING = 'SQL_ASCII'
TABLESPACE = pg_default;
CREATE TABLE "organization"
although
this doesn't leave me feeling very confident about using postgresql inside
my application as I need it to work the first time.
Regards,
Jeanie
On 3/31/07, Derrick Betts <[EMAIL PROTECTED]> wrote:
Jeanie Schwenk wrote:
Thank you for your post Dave. To answer your que