PostgreSQL
La base de données la plus sophistiquée au monde.

Ouverture de session

Navigation

Contactez-nous

Administration du site :
"equipe chez postgresqlfr point org"

Contact presse :
"fr chez postgresql point org"

Contact association :
"bureau chez postgresqlfr point org"

Questions PostgreSQL :
 IRC :
  serveur irc.freenode.net
  canal #postgresqlfr

Recherche

Accéder aux archives

« Octobre 2008  
Lun Mar Mer Jeu Ven Sam Dim
  2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31  

Syndication

Flux XML

Sondage

Quelle est la version de PostgreSQL la plus répandue sur vos serveurs ?
8.3
10%
8.2
42%
8.1
40%
8.0
2%
7.4
6%
7.3 ou antérieure
0%
Nombre de votes: 48

powerbuilder odbc

Technique - odbc | powerbuilder odbc

Par matta le 11/05/2006 - 23:18

Bonjour

j'ai un pb de rollback.
qui n'a sans doute rien a voir avec postgres
mais bon si quelqu'un a une idée.
j'ai un COMMIT non maitrisé avec postgres
et pas ms sql express.

Ma config
- postgres 8.1.0
- powerbuilder 6.5 or powerbuilder 10.5 is same result
- odbc driver 8.01.02.00

ROLLBACK KO

SQLCA.Lock = "RC"
SQLCA.autocommit = FALSE
dw_av_pc.settransObject(SQLCA)
dw_av_pc.InsertRow(0)
dw_av_pc.setitem(1, "exr_id", 8)
dw_av_pc.setitem(1, "pc_id", 24312)
dw_av_pc.setitem(1, "pc_typ", 'AA')
dw_av_pc.setitem(1, "statut", 'O')
messagebox('polo', dw_av_pc.update()) ==> j'ai 1
rollback using SQLCA;
select * from gc_pc where pc_typ = 'AA' ==> 8 24312 'AA' O // et merde

LOG PSQLODBC
conn=62467136, PGAPI_DriverConnect(out)='DSN=gc_pgsql;DATABASE=gc;SERVER=localhost;PORT=5432;SSLMODE=prefer;UID=postgres;PWD=xxxxxxxx;A6=;A7=100;A8=8192;B0=254;B1=8190;BI=4;C2=information_schema.;CX=1b50c88'
conn=62467136, query='INSERT INTO public.gc_pc ( exr_id, pc_id, pc_typ, statut ) VALUES ( 8, 24312, 'AA', 'O' )'
conn=62467136, query='COMMIT'
conn=62467136, PGAPI_Disconnect
conn=62489672, query='ROLLBACK'
conn=62489672, PGAPI_Disconnect

lui fonctionne
execute immediate 'begin; ';
execute immediate "insert into gc_pc values (8 , 24312, 'AV', now(), 'O'); ";
execute immediate 'rollback TRANSACTION ; ' USING SQLCA;

© PostgreSQLFr, tous droits rĂ©servĂ©s.
Site déclaré à la CNIL sous le numéro 1074678, conformément à la Loi en vigueur.