Agregar un elemnto a una tabla que tiene 2 columnas

From: Rafael Urbina <rug_vzla(at)yahoo(dot)com>
To: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Agregar un elemnto a una tabla que tiene 2 columnas
Date: 2006-06-22 18:20:45
Message-ID: 20060622182045.77013.qmail@web54304.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

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/

Responses

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Rafael Urbina 2006-06-22 18:40:25 Agregar un elemento a una tabla que tiene 2 columnas
Previous Message Alvaro Herrera 2006-06-22 17:31:31 Re: configurar postgres8.1en windowspoder conectarme atravez de