Re: Multilevel inserts issue with ODBC

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: krishnanand(dot)pandey(at)accenture(dot)com, pgsql-odbc(at)postgresql(dot)org
Subject: Re: Multilevel inserts issue with ODBC
Date: 2016-06-21 20:57:29
Message-ID: 325beb35-b473-e059-e3af-cc545b1b5d4e@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

On 06/21/2016 01:37 AM, krishnanand(dot)pandey(at)accenture(dot)com wrote:
> Hi Adrian
>
>
>
> We are seeing this error in the VB application logs where we have
> captured the error with the Err.Number and Err.Description in the code.
>
> Are there any limitations in the ODBC driver that it cannot handle
> multi-level inserts?

Not that I can see. Just got a chance to compile 09.05.0300 on my Linux
machine. Going through the isql utility of unixODBC:

SQL> INSERT INTO odbc_test(id, fld_1) VALUES (1, 'one'), (2, 'two'), (3,
'three')
SQLRowCount returns 3

postgres(at)production=# select * from odbc_test ;
id | fld_1
----+-------
1 | one
2 | two
3 | three
(3 rows)

>
>
>
> Thanks
>
>
>
>
>
>
>
> /Krishnanand Pandey/
>

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Responses

Browse pgsql-odbc by date

  From Date Subject
Next Message krishnanand.pandey 2016-06-22 09:20:00 Re: Multilevel inserts issue with ODBC
Previous Message Adrian Klaver 2016-06-21 13:46:20 Re: Multilevel inserts issue with ODBC