Search found 83 matches

by cipto_kh
17.07.2008, 02:54
Forum: Firebird
Topic: Firebird Embedded, anything I am doing wrong ?
Replies: 9
Views: 1884

I use Zeos for FB 2.0 embed and it worked :) I never use the firebirddXX protocol for embedded version. Maybe we can move this embed protocol from the protocol list. Use the normal protocol Firebird-2.0 with "hostname" property set to empty and set the database to your .fdb file or you can...
by cipto_kh
17.05.2008, 02:52
Forum: Firebird
Topic: Firebird + Zeos + Events
Replies: 13
Views: 4370

Rediscovered? it's already done by you Mark? it's great, today I try it (rev 368), but nothing happen :( Am I miss something?

Connect that component to TZConnection, and set AutoRegister to true, then I trap on EventAlert event but nothing happen, maybe there is some setting again?
by cipto_kh
09.05.2008, 01:31
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: TZIBEventAlerter
Replies: 6
Views: 1544

As I know Zeos doesn't have TZIBEventAlerter sine 6.x.x version CMIIW
That component only exists in version 5.x, still not ported to version 6.x :(
by cipto_kh
02.05.2008, 03:56
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Firebird 2.1 final release
Replies: 44
Views: 11242

I look include directory from FB 2.1 but it only header file. What reference to build FB 2.1 plain driver? Someone in here have experience to build database driver? I completely new for this stuff :(
by cipto_kh
24.04.2008, 02:07
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Duplicate result when using locate, loPartialKey and Filter
Replies: 7
Views: 2097

Yep, I also think this is a bug, should register to mantis.

Could you also give an example program in mantis by using Firebird standart example of employee.fdb database?
by cipto_kh
22.04.2008, 01:38
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Firebird 2.1 final release
Replies: 44
Views: 11242

Sandeep, I think you forget to replace the fbclient.dll on your Windows\system32 with version 2.1 I already try with Fb 2.1 and yes there is a problem that martinalex said. The problem is little strange, the first attempt to connect will fail but the second call will success, so there is a change in...
by cipto_kh
18.04.2008, 02:03
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Concurrent access and data overwrite protection
Replies: 7
Views: 2055

When use chache update you can know the old value from that field by using "OldValue" in that persistant field property (before the call ApplyUpdates method). Example: ZQuery1MyField1.OldValue

Is that what you want? or I'm wrong?
by cipto_kh
15.04.2008, 05:45
Forum: Other 6.x Versions
Topic: SortedField
Replies: 1
Views: 2873

If that field is numeric type then it will sort numerically. But if that field type is varchar then it will sort alphabetically. What type of field do you want to sort?
by cipto_kh
14.04.2008, 08:32
Forum: Firebird
Topic: non-blob fields opening
Replies: 5
Views: 1398

The problem is in the LANGUAGE_REQ field, it's an array field type. Array field is cann't access directly by it's field name, so you cann't use table in here, you must use query, and the query to display it will be like this: select JOB_CODE, JOB_GRADE, JOB_COUNTRY, JOB_TITLE, MIN_SALARY, MAX_SALARY...
by cipto_kh
05.03.2008, 09:01
Forum: SQLite
Topic: How to create a database in memory?
Replies: 5
Views: 2702

That's feature is only happen in SQLite?
by cipto_kh
20.02.2008, 03:10
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Metadata and Stored Procedures
Replies: 16
Views: 3354

Actually I'm not Firebird specialist Mark :) , I just using Firebird in my project so I just share with public what I know. I agree with Mark about the new name of the property and why this feature should be can disable or enable, it sound better to not using "Get" prefix in property. I ha...
by cipto_kh
20.02.2008, 02:54
Forum: Off Topic
Topic: A message to the developers
Replies: 4
Views: 24256

Yeah, of course gratefully accepted :)
More people to join is more better :)
by cipto_kh
08.02.2008, 08:57
Forum: PostgreSQL
Topic: pictures & postgresql
Replies: 6
Views: 1960

Try to look in here (but in that article I use Firebird, but I think same solution with MySQL):
ZeosDBO BLOB
by cipto_kh
22.01.2008, 04:37
Forum: Feature Requests
Topic: [bug_fixed] Shortcut for Execute in TZConnection
Replies: 6
Views: 3218

After a short discussion with Mark, I have an idea of this: maybe it's better to use function overloading than using different name for one function that have same meaning, I mean it should be like this: function ExecuteDirect(SQL:string):boolean; function ExecuteDirect(SQL:string; var rowAffected:i...
by cipto_kh
19.01.2008, 02:39
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Program freezes on 'ORDER BY'
Replies: 4
Views: 1223

The latest version of Zeos is 6.6.2-rc, you can try with the latest version. If the problem still exists then I think you should make a sample program with database sample to reproduce that error, then we can help you. As I try with Zeos 6.6.2-rc with Firebird 2.0.3 there is no problem in the order ...