Search found 16 matches

by exdatis
17.04.2017, 07:44
Forum: ZeosLib 7.2 Forum
Topic: DelphiXE3 DBLookupCmb
Replies: 5
Views: 588

Re: DelphiXE3 DBLookupCmb

Yeah... :wink:
Thanks very much, best regards
p.s Ehhhhhhhhhhhh, I forgot to enable controls .... :(
by exdatis
16.04.2017, 13:32
Forum: ZeosLib 7.2 Forum
Topic: DelphiXE3 DBLookupCmb
Replies: 5
Views: 588

Re: DelphiXE3 DBLookupCmb

Probably I do something wrong(but I dont know what). I tried a simple test(new project) and it works... I'm sorry for disturbs.. :roll:
by exdatis
16.04.2017, 08:07
Forum: ZeosLib 7.2 Forum
Topic: DelphiXE3 DBLookupCmb
Replies: 5
Views: 588

Re: DelphiXE3 DBLookupCmb

I tried in ObjectInspector: DataSource -> current query(or table) for edit/insert DataField -> Field (integer); then ListSource -> an other source who have needed for list of some names and id = id of the first(listfield->names and keyfield id) but dblCmb is empty. both data sets are active and not ...
by exdatis
15.04.2017, 19:33
Forum: ZeosLib 7.2 Forum
Topic: DelphiXE3 DBLookupCmb
Replies: 5
Views: 588

DelphiXE3 DBLookupCmb

I use zeos r3986 + PostgreSQL 9.5 but
DBLookupComboBox doesn't work. Any idea?
Thanks
by exdatis
07.04.2011, 06:06
Forum: PostgreSQL
Topic: PostgreSQL query builder
Replies: 4
Views: 1709

I have a few ideas, but I do not have much time(this month). I will write a few options, soon(as possible).
Thanks for your interest, and for great ZeosLib.
ExDatis
by exdatis
06.04.2011, 22:15
Forum: PostgreSQL
Topic: PostgreSQL query builder
Replies: 4
Views: 1709

Hi mdaems,
did you min rewrite usual ZQuery SQL editor?
by exdatis
06.04.2011, 09:41
Forum: PostgreSQL
Topic: PostgreSQL query builder
Replies: 4
Views: 1709

PostgreSQL query builder

Hi all,
if you want:
http://sourceforge.net/projects/exdatis ... les/ver01/
quite simple, light, query builder for PostgreSQL ver.8.*
May be useful for Pascal programmers. Autocomplete(not usual, merge tbl+.+field).
Written quickly, sorry... :wink:
p.s. there is a setup.exe
by exdatis
02.07.2010, 06:21
Forum: 6.6 - stable
Topic: Zeos 6.6.6 + FireBird2.1
Replies: 3
Views: 602

Clasic, or super? You have two different compon. Try second comp. in list.
by exdatis
16.06.2010, 06:23
Forum: PostgreSQL
Topic: Confirm delete
Replies: 3
Views: 1741

I am sorry, messageDlg function is the problem, not postgre-DataSet. :oops:
by exdatis
14.06.2010, 08:14
Forum: PostgreSQL
Topic: Confirm delete
Replies: 3
Views: 1741

Just in DBnavigator property confirmDelete=True. Also, after confirmDelete=False and DataSet event:
before delete:
if messageDialog(....)=mrOK then ...


-any time: stop and disable any object on form
by exdatis
14.06.2010, 06:12
Forum: PostgreSQL
Topic: Confirm delete
Replies: 3
Views: 1741

Confirm delete

I have a problem with confirm msg, before delete, on XP SP2, pg8.3. Work
well on linux(openSuSe 11.2 32bit. pg8.4. FPC 2.4 , Lazarus 9.28. :?:
Break of any process.
by exdatis
24.05.2010, 06:39
Forum: Firebird
Topic: Zquery Select * Form table ROWS 0 TO 100 ERROR
Replies: 3
Views: 579

If you want LIMIT(mysql, postgresql), then:
SELECT FIRST 20 SKIP 40 FIELD_ONE,FIELD_TWO from TABLE1
also, for all :
SELECT FIRST 100 * FROM TABLE_NAME.
:?:
by exdatis
24.05.2010, 06:28
Forum: Firebird
Topic: Two Things
Replies: 4
Views: 613

Provider from non visible to visible, quite simple! If you want just var(query_fileds.value), you do not need DataSource compon.
by exdatis
21.05.2010, 06:38
Forum: Firebird
Topic: Two Things
Replies: 4
Views: 613

DataSource is access provider (Db object, TDBgrid...).
Db with 150 tbls and over 3 mil. rec. size-> about 200MB.
work well on PC 256MB RAM and AMD2800+.
Enough?
PC AMD3000+ and 512MB RAM, select(like with two arg), on 300000 rec. tbl.
gave res < 1sec. :up:
by exdatis
20.05.2010, 06:48
Forum: Firebird
Topic: Boolean Fields (as CHAR fields in Firebird)
Replies: 8
Views: 4023

You can add new field in TZtable(add fields dialog) calculated, then
onCalcFields event:
//procedure...
if table_field.value='Y' then
calc_field.value=True
else
calc_field.value=False;

//set table_field visible false, and calc_field visible true