From: | "Jaime Casanova" <systemguards(at)gmail(dot)com> |
---|---|
To: | "John Isler" <jisler(at)minrel(dot)gov(dot)cl> |
Cc: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: Problemas en INSERT INTO |
Date: | 2006-06-22 01:41:19 |
Message-ID: | c2d9e70e0606211841s78d6cf02wd8587616663061e@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
On 6/21/06, John Isler <jisler(at)minrel(dot)gov(dot)cl> wrote:
>
>
>
>
> Hola lista estoy haciendo una aplicación pequeña
>
> Y al momento de hacer este insert.
>
>
>
> $q = "INSERT INTO respuesta (nombre, pregunta1, pregunta2, pregunta3, rut1)
> VALUES ('$z', '$a', '$b', '$c', '$x')";
>
> $rs = pg_exec($q);
>
>
>
>
>
> Me da el siguente error
>
>
>
> Warning: pg_exec() [function.pg-exec]: Query failed: ERROR: array value must
> start with "{" or dimension information in
>
>
parece que el campo pregunta es un arreglo, si es asi puedes probar esto:
$q = "INSERT INTO respuesta (nombre, pregunta1, pregunta2, pregunta3, rut1)
VALUES ('$z', { '$a', '$b', '$c' }, '$x')";
--
Atentamente,
Jaime Casanova
"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs and the universe trying
to produce bigger and better idiots.
So far, the universe is winning."
Richard Cook
From | Date | Subject | |
---|---|---|---|
Next Message | Nicolas Recabarren | 2006-06-22 03:49:17 | problemas con el restore |
Previous Message | Juan Martínez | 2006-06-22 00:58:43 | Re: problemas con el restore |