Search found 83 matches

by cipto_kh
08.08.2007, 10:30
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Postgresql BlobRead Memory Leak
Replies: 4
Views: 2759

if ReadStream <> Nil then
ReadStream.Free;

I think it should be:
if ReadStream <> Nil then
FreeAndNil(ReadStream);

Becasue the Free mothod didn't nil the instance.
by cipto_kh
02.08.2007, 08:44
Forum: Bug Reports
Topic: [bug_fixed] TZSequence error, value from prior database
Replies: 3
Views: 4259

Please check the patch in Mantis bug, I already patch for that bug but need more test and suggestion if any :)
by cipto_kh
11.07.2007, 10:48
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: MSEide + MSEgui
Replies: 13
Views: 3324

Curious why that guys behind the MSEide not join and contribute to Lazarus? because I think Lazarus is more mature than what they build. It will be good if they use their knowledge for Lazarus, because I think the goal is the same.
by cipto_kh
09.07.2007, 04:08
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Zeoslib revision 261 is not working with Firebird 2.1 Beta 1
Replies: 8
Views: 1969

Ups... if they not change the API it should be work or maybe the check of the protocol 2.0 that limit this?? or something else?
by cipto_kh
06.07.2007, 11:34
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: RefreshParams fix bug
Replies: 2
Views: 681

The "RefreshParams" method is what for? I mean it should do what? Sorry if I ask this, because I just know this facility in Zeos.
by cipto_kh
04.07.2007, 03:51
Forum: Documentations
Topic: gto's Zeos Quick Start Guide - Hands On!
Replies: 8
Views: 18569

Great jobs fren, I like it, more documentation, more people know how to use it, more people help this great components :D
by cipto_kh
28.06.2007, 04:13
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Firebird and 6.6.1 problem: 'Cannot retrieve Resultset data'
Replies: 12
Views: 5423

Perhaps you can add it in mantis bug with the database example. I haven't try FB with collation before (I use FB with its standart setting), but maybe we can look the problem together.
by cipto_kh
26.06.2007, 07:39
Forum: Documentations
Topic: New documentation subproject started
Replies: 4
Views: 12819

As I know, the previous documentation is use DelphiCodeToDoc (with JavaDoc syntax), is it the same syntax of documentation between DelphiCodeToDoc and Doxygen? Just want to know :)
by cipto_kh
06.06.2007, 05:19
Forum: Firebird
Topic: Just a few thoughts on soft/hard commits
Replies: 16
Views: 5582

Yes, I also know that. But we lack of programmer that able to make this for Firebird, my experience is low so now I still cann't to change the code to have option about hard/soft commit. Maybe you can help us to make this feature :)
by cipto_kh
05.06.2007, 06:17
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Weird crash in 6.6.1 beta.
Replies: 5
Views: 1203

OK, then it seem to be your program logic that's wrong.
by cipto_kh
31.05.2007, 03:46
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Weird crash in 6.6.1 beta.
Replies: 5
Views: 1203

In the first posting you said "The code crashes when executing the Open statement." But now it's OK, after you put the cange code that I told? Can you give us the simple project that show this case? Are you already check the ReadOnly property that should be false? In your code, after chang...
by cipto_kh
29.05.2007, 08:27
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Weird crash in 6.6.1 beta.
Replies: 5
Views: 1203

Hi PhillHS maybe you can try this: Change in ZAbstractRODataset: procedure TZAbstractRODataset.ExecSQL; begin .............. if (Statement = nil) or (Statement.GetConnection.IsClosed) then Statement := CreateStatement(FSQL.Statements[0].SQL, Properties) else if (Assigned(Statement)) then Statement.C...
by cipto_kh
28.05.2007, 11:23
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: input parameter count is less then expected
Replies: 1
Views: 1045

Do you already set the value for param :placa in master table before open the detail? Are you also sure that the master field already have "vei_placa" field?
by cipto_kh
28.05.2007, 10:27
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Firebird and underscores in tablenames
Replies: 2
Views: 948

@tomcmok Can you also show the example how to produce this error? the project example with database example? Because I still confuse with what you talk about. I already try to create table with the following name "aa", "b1_aa", b1_aa_t1", and "aa_t1" and if I drop ...
by cipto_kh
08.05.2007, 12:09
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Lookup field BUG (Zeos REV 240)
Replies: 3
Views: 942

I already put the small test project on there. Do you already have the Info Power components? I also include the .exe of that test project. And the database I use is employee.fdb (example database from FB 2), the database must in the same folder with the project, and I'm not use embedding in TZConne...