Search found 7 matches

by pawelsel
22.08.2008, 08:04
Forum: 6.6 - stable
Topic: Problem with GetTableNames and Postgre
Replies: 6
Views: 1485

Mark, I think that this is the best solution. Pawelp ;), With suffix _pkey PostgreSQL create by default constraints for primary keys. This is not the sequence. Sequences names could be any name you wish and the sequences are usually used with DEFAULT on primary numeric column of table. From version ...
by pawelsel
21.08.2008, 07:07
Forum: 6.6 - stable
Topic: Problem with GetTableNames and Postgre
Replies: 6
Views: 1485

I think there is no need to remove sequences from list. Only the indexes makes troubles.
In PostgreSQL You can do something like this:

SELECT * FROM some_sequence;

And it returns data from that sequence.
by pawelsel
22.07.2008, 14:45
Forum: User Patches
Topic: [patch_done] POLISH translate
Replies: 1
Views: 486

[patch_done] POLISH translate

Hello all.

Included zip file contains POLISH translated constants in ZMessages.pas and patch created from Zeos.inc

pawelsel
by pawelsel
24.11.2006, 12:33
Forum: Bug Reports
Topic: [bug_fixed] Do not work sorterfields
Replies: 11
Views: 5641

Hi Mark,

Wait for results of our discussion with bangfauzan.
I think the problems from this topic are not resolved yet.

Paweł
by pawelsel
23.11.2006, 10:37
Forum: Bug Reports
Topic: [bug_fixed] Do not work sorterfields
Replies: 11
Views: 5641

Check my post http://zeos.firmos.at/viewtopic.php?t=898 . bangfauzan, Your new solution doesn't work with many fields. Firstly. In SetSortedFields You first get sort type, than You cut text after first space. It doesn't occure when there are simultaneously ASC and DESC in Value or if there are not A...
by pawelsel
13.11.2006, 14:01
Forum: Bug Reports
Topic: [bug_fixed] Bug in ZAbstractRODataset (6.6.0 beta version)
Replies: 6
Views: 4614

Hi Mark

Property LinkedFields is in protected section and there is no
way to use it without publishing.

How can I contact with bangfauzan directly?
by pawelsel
13.11.2006, 10:30
Forum: Bug Reports
Topic: [bug_fixed] Bug in ZAbstractRODataset (6.6.0 beta version)
Replies: 6
Views: 4614

[bug_fixed] Bug in ZAbstractRODataset (6.6.0 beta version)

In previous version (6.1.5) it works perfectly. In version 6.6.0 beta I can't set SortedFields like this: SortedFields:='OP_DATE DESC,OP_NUMBER'; When I check in debugger content of this property after this line I see this: 'OP_DATE' I checked code of ZAbstractRODataset and this is what I saw in pro...