Search found 91 matches

by pol
31.05.2006, 09:44
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Oracle10gXe - the size problem
Replies: 12
Views: 2217

I Think the easiest way to avoid this would modify column song to varchar2(120). You know, with varchar2 only the "filled" amount of space is occupied, nothing is wasted.

hth
Rüdiger
by pol
30.05.2006, 11:26
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Oracle 10gXE - readonly transaction
Replies: 10
Views: 22430

Hm, as read commited is the default isolation level for Oracle, also for updating transactions, that doesn't sound too good. Has it always been this way?
Anyway, maybe it would be good to use a TZQuery with an

Code: Select all

alter session set isolation_level = read_committed
to re-set it to that after connecting.
by pol
13.04.2006, 09:03
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: [SOLVED]DBLookupComboBox:
Replies: 11
Views: 3439

What makes me suspicious is this "type variant" in your first error message, although it is integer, as if it is not recognized where it belongs to. Did you define persistent TFields, by double clicking on the table or query icon on the form and selecting "add all fields" after r...
by pol
12.04.2006, 09:39
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: zeosdbo-6.5.1-alpha_cvs_23-09-2005.zip and Delphi 2005
Replies: 7
Views: 1458

Hi Bill,

This normally points to that there is an older version of a bpl (in this case ZCore.bpl) somewhere on the search path. Make sure that you delete (or better, move to some unreachable place) all older Zeos libraries.

Regards,
Rüdiger
by pol
03.03.2006, 09:56
Forum: 6.1.5
Topic: TZUpdateSQL
Replies: 7
Views: 3861

You only need TZUpdateSQL if your query is so complicated (joins) that Zeos can't generate an update sql by itself. Then you have to write your own insert/update/delete SQL in TZUpdateSQL. And yes, you have to set RequestLive = true (in 6.5.1: ReadOnly = false), for else it is in fact readonly. Rega...
by pol
03.03.2006, 09:46
Forum: 6.1.5
Topic: TZQuery & LAST_INSERT_ID()
Replies: 4
Views: 2471

Hi! It's very easy. As you wrote in the subject, it's last_insert_id(). Use a new ZReadOnlyQuery with the SQL 'select last_insert_id() as LID'. After you have done a Post and ApplyUpdates (I'm not sure if the last one is really necessary) of your Insert, close and open the LID query. Then you have t...
by pol
01.03.2006, 09:28
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: dbedit type 28/02/2006 after the post it shows 31/12/1899
Replies: 5
Views: 1781

For Delphi's Tdatetime 31/12/1899 is just zero (you remember, digits in front of decimal separator: date, behind decimal separator: time). What's the "starting point" (zero) for PostgreSQL? Maybe 0001-12-30 BC? That would mean that the value gets lost on the way to the database. I remember...
by pol
24.02.2006, 09:39
Forum: Feature Requests
Topic: MySQL v5
Replies: 18
Views: 6839

...or maybe Oracle Express
by pol
20.02.2006, 09:48
Forum: 6.1.5
Topic: Connection to MSSQL
Replies: 10
Views: 4929

Well, the wizard is a wizard and should know...
I think it's always SQLOLEDB.1, but I'm not sure, it's a long time since I have done that. Anyways, it has to be done on your clients' machines too, so you will see what happens.

Regards,
Rüdiger
by pol
17.02.2006, 09:33
Forum: 6.1.5
Topic: Connection to MSSQL
Replies: 10
Views: 4929

Hi,

I suppose the odbc data source does exist? (ODBC-Datenquellen-Administrator - System-DSN or Datei-DSN) I had exactly the same error message one of these days when I tried to open an old program relying on an odbc data source which had long gone.

Regards,
Rüdiger
by pol
25.01.2006, 09:33
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.
by pol
24.01.2006, 09:30
Forum: Firebird
Topic: simple query with params
Replies: 9
Views: 3573

No, I mean, what is ZQuery1.SQL?
by pol
20.01.2006, 10:09
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Blob data edit / add problem
Replies: 4
Views: 1320

As far as I can see: you hava a database field called "Description" and a Memo field with the same name, and you try to fill the database field with the contents of the memo field, using stream MS. But I don't see where you actually fill the database field. No T.FieldValues['Description']....
by pol
20.01.2006, 09:56
Forum: Firebird
Topic: simple query with params
Replies: 9
Views: 3573

@Byungho:
What is your SQL?

Regards,
Rüdiger
by pol
19.01.2006, 10:42
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.