Search found 50 matches

by bangfauzan
06.04.2010, 09:34
Forum: SQLite Administrator
Topic: Boolean, True != True
Replies: 2
Views: 1643

try this :
insert into Event ( B1, B2, B3) Values ( 'Y', 'N', 'N') ;
by bangfauzan
21.02.2010, 13:12
Forum: 6.6 - stable
Topic: TZAbstractDataset.InternalPost and BUG-FIX by bangfauzan
Replies: 9
Views: 974

thanks for your contribution, probably it's better.
by bangfauzan
06.10.2009, 01:28
Forum: ZeosLib 7.0 Beta Forum
Topic: File not found: 'ZDbcPooled.dcu'
Replies: 4
Views: 623

try to rebuild (not just compile) the package.
thx
by bangfauzan
28.09.2009, 16:54
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Limit LookupCombo Elements
Replies: 1
Views: 2142

I have the same problem. MASTER table: (notran, custno, kontak, .....) KONTAK table (id, nama, ....) DsMaster.DataSet := MASTER; KONTAK.MasterSource := dsMaster; KONTAK.MasterFields:='custno'; KONTAK.LinkedFields:='id'; MASTER contains lookupfield calls luKontak luKontak.LookupDataset:=KONTAK; luKon...
by bangfauzan
28.09.2009, 12:05
Forum: SQLite
Topic: How to find all table name in my database ?
Replies: 3
Views: 1061

Ansewer

also u can use GetTableNames() function in ZConnection component
by bangfauzan
26.07.2007, 11:01
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Problem with fields editor in Lazarus
Replies: 5
Views: 1855

Lazarus based on FPC 2.0.4 does not support FieldEditor
Try to download and install lazarus based on FPC 2.1.1 or currently 2.1.5
you can download it from official lazarus url on the daily snapshot

regards
by bangfauzan
11.06.2007, 01:58
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Cached Updates and master detail relationship
Replies: 2
Views: 1398

Detail dataset is automatically fill the key field with the value of master's key field. if master's key field is null (e.g. becouse the key field is autoincreament), the value of detail's key field also null. Solution : You first have to post (applyupdate) the master dataset (and get the key value)...
by bangfauzan
12.03.2007, 04:45
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: STRANGE problem with SUM
Replies: 3
Views: 1942

IF YOU ARE USING MYSQL 5, PLEASE CONSIDER THAT FLOAT TYPE OF
MYSQL IS BUGGY. TRY TO CHANGE TO DOUBLE TYPE.
REGARDS
by bangfauzan
12.03.2007, 04:36
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: EDatabaseError with message Field 'xxxxxx' must have a value
Replies: 7
Views: 1741

Hi napi What mdeam says is corret, you don't have to make any modification in your DDL (Data Definition Language) like removing the primary key. Do not do anything over the DDL. Also you dont have to remove anything on your Dataset. You Just have change the "Required" property to False on ...
by bangfauzan
21.02.2007, 01:49
Forum: SQLite Administrator
Topic: Great tool, but what about pictures ?
Replies: 5
Views: 3198

Thak you very much.......
by bangfauzan
20.02.2007, 04:53
Forum: SQLite Administrator
Topic: Great tool, but what about pictures ?
Replies: 5
Views: 3198

Where can I download the latest version of SQLite Administrator?
by bangfauzan
08.01.2007, 05:45
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Noob : Retrieve FieldNames
Replies: 8
Views: 1895

Like swiersbicki said, u can use TStingList.
by bangfauzan
05.01.2007, 04:42
Forum: Firebird
Topic: Multiple queries in one transaction
Replies: 4
Views: 2480

zippo is right, as far as I know, we can make multiple statements using ZProcessor or ZSequence, but we can't do that using ZQuery.
by bangfauzan
04.01.2007, 02:21
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Noob : Retrieve FieldNames
Replies: 8
Views: 1895

For retrieving field names you can use GetFieldNames function

ex. ZTable1.GetFieldNames(List);

regards
by bangfauzan
19.12.2006, 07:55
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Fine Tune: IndexFieldNames, SortedFields and SortType
Replies: 1
Views: 824

Fine Tune: IndexFieldNames, SortedFields and SortType

I made some revision in ZAbstractRODataset.pas, for fine-tuning such properties. The are now more stable and better behavior.
The changes based on revisions proposed by pawelsel and his testers, also some comments on the forum.
Regards.