small ODBC problem

Поиск
Список
Период
Сортировка
От pgsql-bugs@postgresql.org
Тема small ODBC problem
Дата
Msg-id 200107061614.f66GE0H28633@hub.org
обсуждение исходный текст
Список pgsql-bugs
Jaeho,Huh (dduma@personaldb.net) reports a bug with a severity of 3
The lower the number the more severe it is.

Short Description
small ODBC problem

Long Description
In console, if I execute the multiple statements including with one error statement, then all statements will succeed
exceptthe one error statement. ( Of courcse I didn't use the 'BEGIN WORK' ) 

But in ODBC, if I execute the multiple statements including with one error statement, then all of the statements will
notsucceed. In other words, multiple statements are executed in transaction state in ODBC though without 'BEGIN WORK'. 

I think ODBC run should be the same with the console.

Is it a bug?

Sample Code
In console
  INSERT INTO a (aa,bb) VALUES ('a','b');INSERT INTO a (aa,bb) VALUES ('a',3);
              ^                                    ^
              |                                    |

            success                               fail


In ODBC
  INSERT INTO a (aa,bb) VALUES ('a','b');INSERT INTO a (aa,bb) VALUES ('a',3);
   -----------> ALL Fail.

No file was uploaded with this report

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

Предыдущее
От: pgsql-bugs@postgresql.org
Дата:
Сообщение: not ordered with multibyte language in V7.12
Следующее
От: pgsql-bugs@postgresql.org
Дата:
Сообщение: Referential Integrity corrupted sometimes by Rules