[JDBC] RE: [JDBC] Dúvida

2001-08-30 Thread Kovács Péter
Na akkor ezt mindjárt meg is beszélhetjük. Én például nem beszélek portugálul, de a nyelv nagyon tetszik, és szívesen tanulnák portugálul, ha alkalma volna rá. A PostgreSQL-t nagyon szeretem, és elképeszt, hogy milyen gyorsan halad a fejlesztés. Kiváncsi vagyok, mennyire stabil és mennyire bírja

Re: [JDBC] RE : ? (question mark) characters

2001-09-03 Thread Kovács Péter
the driver what character set the backend is sending us? Can't it ask the backend dynamically? This is what it actually does, isn't it? (Based on what I usually see in the trace output on the backend.) I tested a unicode database with varchar(255) fields and hungarian accented characters and

Re: [JDBC] JAVA vs PERL : PERL wins to postgreSQL

2001-09-05 Thread Kovács Péter
The obvious question is whether the PERL-script is also executing in one transaction. If it is not, we're cheating setting autocommit off in the JDBC-test app. (I did not look at the code, since I am not familiar with the PGSQL's PERL-interface anyway.) Peter -Original Message- From:

Re: [JDBC] jdbc capabilities

2001-10-16 Thread Kovács Péter
You can check the capabilities even at runtime querying the DatabaseMetaData object returned by java.sql.Connection.getMetaData(). At design time you can look at the source code :-). The result set is scrollable, but for this purpose a client side cache is used instead of a backend side cursor,