Search found 2733 matches

by mdaems
25.04.2012, 22:48
Forum: ZeosLib 7.0 Beta Forum
Topic: [patch_done] utf8+D_XE+win 32/64 + testing-egonhugeist 1132
Replies: 4
Views: 706

It may be helpfull to add a TZSQLMonitor to your project to find out what query is sent to the server for doing the update. Are the right conditions used, ...
The reason may also be that a BLOB field is used in a where condition that isn't encoded exactly the same as the original value.

Mark
by mdaems
25.04.2012, 22:25
Forum: User Patches
Topic: Path to 6.6.6-stable - "constref" FPC 2.5.1
Replies: 11
Views: 3671

Alex Rosa , Do you think you can get this working correctly for old and new fpc compilers on the 6.6.7 branch? I can't promise a 6.6.7 build within a few days, but if you can provide a working patch we can commit it. And after that I can start thinking about making another try of a 6.6.7 build. Mark
by mdaems
25.04.2012, 22:17
Forum: 6.6 - stable
Topic: Variant conversion Fail for Int64/LargeInt
Replies: 4
Views: 698

We know VInteger defined as Int64 but after I search at Unit ZVariant.pas Starting at Line 1081 convertion for Vint From String and attach using Integer conversion
Is this also true on 32 bit compilers? And isn't the conversion Integer() working correctly in 64 compilers?

Mark
by mdaems
25.04.2012, 22:00
Forum: 6.6 - stable
Topic: ERRO: List index out of bounds(0)
Replies: 7
Views: 2060

I'll believe you :lol:

Committing it in testing branch now.

Mark
by mdaems
25.04.2012, 21:54
Forum: 6.6 - stable
Topic: Zeos Driver for DataAbstract
Replies: 1
Views: 287

Seems more a question for the DataAbstract forum.

Mark
by mdaems
25.04.2012, 21:52
Forum: PostgreSQL
Topic: Server Side DataChange
Replies: 6
Views: 2128

sfxcc , This would be an extremely difficult feature to implement as it involves evaluating the results you get from this refresh query and guess if the record is already in the dataset (and which record is it then?) or if it should be appended at the end of the dataset. So no... it's not a feature...
by mdaems
25.04.2012, 21:44
Forum: Firebird
Topic: Update on various fields with the same sql statement
Replies: 2
Views: 1558

Example?
by mdaems
25.04.2012, 21:25
Forum: ZeosLib 7.0 Beta Forum
Topic: [patch_done] Oracle Prefetch Rows
Replies: 5
Views: 804

EgonHugeist , CompsSQL , It would be better if this could be introduced in statement (ZQuery) options. That way it can be set for the queries that need it. However, I just committed the patch to testing branch as it would only hurt in cases where not all records of the resultset are really fetched....
by mdaems
25.04.2012, 20:56
Forum: ZeosLib 7.0 Beta Forum
Topic: [patch_done] passwords with ; in them
Replies: 6
Views: 847

Meanwhile we fixed this by introducing the ZURL object as the prefered container for connection properties which takes care of escaping special characters, ... Functionality is unchanged for existing programs. However, now it's possible to store ; as part of the password which wasn't possible before...
by mdaems
15.03.2012, 01:26
Forum: ZeosLib 7.0 Beta Forum
Topic: [patch_done] passwords with ; in them
Replies: 6
Views: 847

Maybe a stupid question, but doesn't this change the way people connect to the database when using the dbc layer directly? Or does this not impact the connect string structure?

Mark
by mdaems
15.03.2012, 01:15
Forum: Feature Requests
Topic: Maybe improve the design of icons
Replies: 20
Views: 4670

ism,
Thanks for this work! I'll have to figure out how to make the right resource files from these images.

Other users,
What do you think about these icon's? Better or worse?

Mark
by mdaems
15.03.2012, 00:48
Forum: PostgreSQL
Topic: Server Side DataChange
Replies: 6
Views: 2128

sfxcc,

Did this work as expected?

Mark
by mdaems
15.03.2012, 00:44
Forum: PostgreSQL
Topic: Processing requests in asynchronous mode
Replies: 5
Views: 2313

Pyh,
If you only have one resultset, can't you use a TZQuery?
Connect using a TZConnection.
Then set the TZconnection.dbcconnection noticeprocessor.
Then open the ZQuery and read the data.

Wouldn't that work?

Mark
by mdaems
15.03.2012, 00:30
Forum: SQLite
Topic: Zeos 6.6.6 + Delphi2006: need a lot of memory
Replies: 6
Views: 2124

Does that mean: 'Yes, TEXT fields use less memory and behaviour is identical, so we will use TEXT fields'??

Mark
by mdaems
15.03.2012, 00:28
Forum: SQLite
Topic: Read only error at Post command
Replies: 3
Views: 1875

Actually, I'm wondering if it's desirable to show a resultset when using ExecSQL. That function should only be used to fire sql-statements that perform an Action (update, insert, create, drop, ...). Zeoslib is so nice to return an eventual dataset returned by an executed query, but maybe that makes ...