Search found 8 matches

by albert.pratama
10.04.2014, 02:56
Forum: Firebird
Topic: Use embedded connections
Replies: 2
Views: 1920

Re: Use embedded connections

Hi,

I got similar error message when I'm doing concatenation in the query (with || characters). All other queries without || are running well.
The five files mentioned (icu*.dll, fbintl.dll, fbintl.conf) are already in place.

What other things should I check?

Thanks in advance.

Albert
by albert.pratama
07.06.2008, 03:57
Forum: Firebird
Topic: Create procedure with Zeos on Delphi 7
Replies: 3
Views: 1723

After going through some other errors, finally I have been able to do it. Still with the same component, TZQuery, but with different way. The code is now: var testQuery: TZQuery; begin testQuery := TZQuery.Create(nil); testQuery.Connection := dmSIDPZ.connSIDP; testQuery.ParamCheck := false; testQuer...
by albert.pratama
06.06.2008, 10:38
Forum: Firebird
Topic: Create procedure with Zeos on Delphi 7
Replies: 3
Views: 1723

Create procedure with Zeos on Delphi 7

Hi all, I'm trying to create procedure for Firebird with Zeos on Delphi 7. I have tried to use ZQuery component with SQL: CREATE PROCEDURE UPDATE_PASIEN( PAS_ID INTEGER, PAS_NO_RM VARCHAR(20) CHARACTER SET NONE, PAS_NAMA VARCHAR(255) CHARACTER SET NONE, PAS_ALAMAT VARCHAR(255) CHARACTER SET NONE, PA...
by albert.pratama
14.12.2007, 10:00
Forum: Firebird
Topic: Firebirdd-x.x in protocol property of ZConnection
Replies: 4
Views: 1891

Ok Mark, it's all clear now. Thanks!

Albert
by albert.pratama
14.12.2007, 09:22
Forum: Firebird
Topic: Firebirdd-x.x in protocol property of ZConnection
Replies: 4
Views: 1891

Kinda being more confused :(

So, if I wrote a code to be run in client's pc with firebird embedded, I better use this 'firebirdd-x.x' protocol, instead of 'firebird-x.x'?

Thanks for helping.

Albert
by albert.pratama
14.12.2007, 08:10
Forum: Firebird
Topic: Firebirdd-x.x in protocol property of ZConnection
Replies: 4
Views: 1891

Firebirdd-x.x in protocol property of ZConnection

Hi everyone,

Does anybody know what the 'firebirdd-x.x' option in protocol property is used for? I've been searching in this forum, but didn't found any answers or posts.

Albert
by albert.pratama
13.12.2007, 11:03
Forum: Firebird
Topic: Zeos 6.6.0 beta on Turbo Delphi 2006 + Firebird Embedded
Replies: 1
Views: 1387

Hi again, After some tests, I found that the problem didn't lay on how I connect the database. But, the problem was happened when I try to activate a table or view. The code was something like this: connBesi.Database := ExtractFileDir(ParamStr(0)) + '\besi.fdb'; connBesi.Connect; vwBarang.Active := ...
by albert.pratama
13.12.2007, 01:11
Forum: Firebird
Topic: Zeos 6.6.0 beta on Turbo Delphi 2006 + Firebird Embedded
Replies: 1
Views: 1387

Zeos 6.6.0 beta on Turbo Delphi 2006 + Firebird Embedded

Hi all, I have difficulty in connecting Zeos (on Turbo Delphi 2006) to Firebird 2.0.2 Embedded. I filled the ZConnection properties as follows: - Database: path-todb\besi.fdb - Hostname: (blank) - Password: masterkey - Protocol: firebird-2.0 - User: sysdba If at design time I try to connect it, the ...