| From: | "Marco Tulio" <anjo(dot)doce(dot)marilia(at)bol(dot)com(dot)br> |
|---|---|
| To: | pgsql-admin(at)postgresql(dot)org |
| Subject: | null date fields |
| Date: | 2002-02-12 23:43:07 |
| Message-ID: | GRG1VV$Iy95UCi1codE8Q1YH1k9Mm_VnNHIAJxdUQldwnPX95VJ6@bol.com.br |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-admin |
Its every time a big problem when porting data from
another databases to PostgreSQL.
I ever need translate null date fields to "NULL" string,
instead the normal '' sintaxe.
Considering this table:
CREATE TABLE order (order_id int4, sale date);
This causes error:
INSERT INTO order (order_id, sales) VALUES (1,'');
And I need write codes for translate the porting to:
INSERT INTO order (order_id, sales) VALUES (1,NULL);
Has any place to change this in configuration directory ?
((I need say that´s my English is soo poor ?? :-))
-----------
Marco Tulio
Desenvolvimento de sistemas para Internet
__________________________________________________________________________
Quer ter seu próprio endereço na Internet?
Garanta já o seu e ainda ganhe cinco e-mails personalizados.
DomíniosBOL - http://dominios.bol.com.br
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Peter Eisentraut | 2002-02-13 04:03:58 | Re: null date fields |
| Previous Message | Manuel Trujillo | 2002-02-12 15:57:51 | Re: stopping "wal" |