DB insert Error

Поиск
Список
Период
Сортировка
От Jasbinder Bali
Тема DB insert Error
Дата
Msg-id a47902760608152055i4ecfc682v6f8b6a88901d9202@mail.gmail.com
обсуждение исходный текст
Ответы Re: [GENERAL] DB insert Error  (Michael Fuhr <mike@fuhr.org>)
Список pgsql-novice
Hi,
I'm using ECPG and trying to do follwoing insert in one of the talbes.
 
 insert into raw_email ( id  , raw_email  ) values ( 1 , :ch);
 
ch is an array and defined as follows:
 
 EXEC SQL BEGIN DECLARE SECTION;
    char ch[MSG_LEN];
EXEC SQL END DECLARE SECTION;
 
contents of array ch is actually a parsed raw email that i've attached herewith.
 
I get the following error when the insert statement is hit:
 
[2446]: ECPGexecute line 97: Error: ERROR:  array value must start with "{" or dimension information.
 
No clue what this error is all about. I googled for this error, found a few results but that didn't help much.
 
Thanks,
~Jas
 
 
 
 
Вложения

В списке pgsql-novice по дате отправления:

Предыдущее
От: "Jaime Casanova"
Дата:
Сообщение: Re: Return type for procedure
Следующее
От: Michael Fuhr
Дата:
Сообщение: Re: [GENERAL] DB insert Error