Search found 29 matches

by ssamayoa
16.02.2006, 13:36
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Oracle 9i DATE field type
Replies: 3
Views: 1194

Checkout sources from CVS and build.
Those have the correct mapping.

Regards.
by ssamayoa
26.01.2006, 13:43
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: New Poll: Are you interested on using Oracle XE with Zeos?
Replies: 5
Views: 1302

Ah, of course, the old BLOB problem... But then I don't think it works for other Oracle versions => 8i. Never tried it with Zeos. It dont work with Oracle 8i either when data length is gretare than 4k and doesnt work at all when you use BFILE. The limitation is in the way driver fetchs data, it use...
by ssamayoa
26.01.2006, 13:36
Forum: Other 6.x Versions
Topic: zeos and auto increment
Replies: 7
Views: 5576

This is the normal behaviour of C/S applications. The application must SELECT the new insrted record to known wich fielsd where changed by pre-insert triggers and / or identity or auto inc fields. Normally JDBC drivers can do this because them do the trick changing the SQL text adding RETURNING clau...
by ssamayoa
26.01.2006, 13:31
Forum: PostgreSQL
Topic: Problem with TransactIsolationLevel tiSerializable
Replies: 4
Views: 3426

Before open polling table, commit and start a new transaction.

Regards.
by ssamayoa
25.01.2006, 04:11
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: New Poll: Are you interested on using Oracle XE with Zeos?
Replies: 5
Views: 1302

Hello! What do you think has to be done especially? I made a simple test (a table, a dbgrid) and this worked. True support for BLOB columns (BLOB, CLOB and BFILE) of any size. Now only RAW columns and BLOB/CLOB fields of 4K allowed. Support for new IEEE floating point (10G) data types. etc. But sin...
by ssamayoa
19.01.2006, 18:03
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Blob data edit / add problem
Replies: 4
Views: 1320

Which error?

Which database?

Which component?

Regards.
by ssamayoa
17.01.2006, 23:07
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: New Poll: Are you interested on using Oracle XE with Zeos?
Replies: 5
Views: 1302

New Poll: Are you interested on using Oracle XE with Zeos?

New Poll: Are you interested on using Oracle XE with Zeos?
by ssamayoa
17.01.2006, 22:06
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Larger Blob field on Oracle
Replies: 3
Views: 1402

FWIW, I found that LOB and CLOB are fetched and sent back to the database as RAW not with LOB locators. Increasing the size of LOB and CLOB which can be readed and write is a matter of haking a bit in TZOracleResultSet.Open (I guess that where DBX driver sets its limit) but support for BFILE will be...
by ssamayoa
17.01.2006, 20:34
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Larger Blob field on Oracle
Replies: 3
Views: 1402

I'm investigating this issue since I want to access relative big BLOBs and BFILEs.

Regards.
by ssamayoa
16.01.2006, 02:08
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Oracle 10g Express and Instantclient - so far ok
Replies: 0
Views: 541

Oracle 10g Express and Instantclient - so far ok

Hi.
Apart from the bad transaction isolation mapping, I'm pleased to announce (FWIW) that Zeosdbo works with Oracle 10g XE using Instantclient 10.2.


Regards.
by ssamayoa
14.01.2006, 19:55
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: DBLookupComboBox doesnt work
Replies: 1
Views: 621

I found the problem in CompareFieldsFromResultSet() in ZDatasetUtils as some posts here points.

I check CVS and found that the source has the correction.

I better checkout sources from CVS and try from it.

Regards.
by ssamayoa
14.01.2006, 19:36
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: DBLookupComboBox doesnt work
Replies: 1
Views: 621

DBLookupComboBox doesnt work

Hi. I'm writting a simple table maintenance programs and found that DBLookupComboBox doenst work well with Zeos. The control doesnt show the current value but if I click on drop button the list shows the correct selected record. I remeber suffering this before (I just re-start my Delphi programming ...
by ssamayoa
14.01.2006, 19:25
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Oracle's driver has incorrect isolation mapping
Replies: 0
Views: 500

Oracle's driver has incorrect isolation mapping

Hi. I just began to play with ZeosDB 6.5.1 alpha (cvs of 10.2005) and found that Oracle's transaction isolation level mapping is incorrect. Correct mapping is: tiReadCommitted: SQL := 'SET TRANSACTION ISOLATION LEVEL READ COMMITTED'; Isolation := OCI_TRANS_READWRITE; tiRepeatableRead: Oracle doesn't...
by ssamayoa
14.01.2006, 19:18
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Oracle 9i DATE field type
Replies: 3
Views: 1194

You are wrong.

DATE data type in Oracle 8.x WAS the equivalent of "new" (for Oracle 9.x+) TIMESTAMP data type.

In other words:

8.x's DATE = 9.x's TIMESTAMP
8.x's TRUNC(DATE) = 9.x's DATE

Regards.