From: | Rafael Urbina <rug_vzla(at)yahoo(dot)com> |
---|---|
To: | Postgre SQL <pgsql-es-ayuda(at)postgresql(dot)org> |
Subject: | Agregar un elemento a una tabla que tiene 2 columnas |
Date: | 2006-06-22 18:40:25 |
Message-ID: | 20060622184025.59432.qmail@web54311.mail.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
Rafael Urbina <rug_vzla(at)yahoo(dot)com> escribió: Fecha: Thu, 22 Jun 2006 13:20:45 -0500 (CDT)
De: Rafael Urbina <rug_vzla(at)yahoo(dot)com>
Asunto: Agregar un elemnto a una tabla que tiene 2 columnas
Para: pgsql-es-ayuda(at)postgresql(dot)org
Buenas tardes, Lista
Tengo este trozo de código en el gram.y:
insert_rest:
......
| VALUES '(' insert_target_list ')' ConstDatetime
{
$$ = makeNode(InsertStmt);
$$->cols = NIL;
$$->targetList = lappend_int($3,5);
$$->selectStmt = NULL;
}
y me da este error:
postgres=# insert into prueba values('Rafa') Timestamp (5);
server closed the connection unexpectedly
This probably means the server terminated abnormally
before or while processing the request.
The connection to the server was lost. Attempting reset: Failed.
**********************************************************************************
Lo que quiero realmente es con el metodo lappend_int del archivo list.c agregar un elemento entero a la lista insert_target_list, con el fin de producir una sentencia transformada en postgres asi:
insert into prueba values('Rafa') Timestamp (5); ----> esto se convierta en:
insert into prueba values('Rafa', 5);
Mi tabla de prueba esta formada por 2 columnas una Varchar y otra int. Agradeciendo toda la ayuda.
Saludos,
Rafael Urbina
Caracas - Venezuela
__________________________________________________
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis!
Regístrate ya - http://correo.espanol.yahoo.com/
__________________________________________________
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis!
Regístrate ya - http://correo.espanol.yahoo.com/
From | Date | Subject | |
---|---|---|---|
Next Message | Ë®îÇk tåþîå þé®Ëz | 2006-06-22 19:20:17 | SQLERRM & SQLSTATE |
Previous Message | Rafael Urbina | 2006-06-22 18:20:45 | Agregar un elemnto a una tabla que tiene 2 columnas |