Search found 37 matches

by dhongu
12.09.2006, 05:49
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Runtime Error 216 on Program Shutdown on Delphi 2006 (10)
Replies: 37
Views: 13102

Try with source from svn://firmos.at/zeos/branches/testing
by dhongu
11.09.2006, 18:42
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Runtime Error 216 on Program Shutdown on Delphi 2006 (10)
Replies: 37
Views: 13102

MZmuda, Delphi 10.0.2166.28377
by dhongu
11.09.2006, 17:37
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Runtime Error 216 on Program Shutdown on Delphi 2006 (10)
Replies: 37
Views: 13102

I am tested ZeosLib with Delphi10 and work fine.
Try to add path to source component to Delphi in Library Path.
by dhongu
11.09.2006, 10:43
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Reduce size.
Replies: 6
Views: 1463

I check this. With tools make diff file for send you changes as a patch.
by dhongu
10.09.2006, 07:10
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Reduce size.
Replies: 6
Views: 1463

Reduce size.

If you don't use any type of protocol set zeos.inc with protocols are you need. :idea: For reducing more size of bpl and application make modification in file ZPlain.dpk in section (contains ... end ) and recompile. [syntax="delphi"] contains ZPlainDriver in '..\..\src\plain\ZPlainDriver.p...
by dhongu
08.09.2006, 06:58
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Runtime Error 216 on Program Shutdown on Delphi 2006 (10)
Replies: 37
Views: 13102

In unit ZPlainMySql40

[syntax="delphi"]
destructor TZMySQLNativeLibraryLoader.Destroy;
begin
if Loaded then
api_rec.mysql_server_end;
inherited Destroy;
end;

[/syntax]

In this case anytime is call api_rec.mysql_server_end, but this function is for embedded server library.
by dhongu
07.09.2006, 11:26
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: zeosdbo-6.5.1-alpha_cvs cannot be compiled with Delphi 2006
Replies: 21
Views: 8746

I have some problem MZmuda but only mysql 4.0, with mysql 4.1, mysql 5 is ok.

Access violation at address 00000000. Read of address 00000000 from Delphi IDE and runtime error 216 when run compiled application without Delphi IDE

I have version 100 from SVN.
by dhongu
29.08.2006, 05:35
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: ZMessages.pas in Romana
Replies: 2
Views: 494

Thank you mdaems.
by dhongu
28.08.2006, 21:21
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: ZMessages.pas in Romana
Replies: 2
Views: 494

ZMessages.pas in Romana

Hello

I make new section in ZMessages.pas for Romanian language.

mdaems can you please add this to SVN in ZMessages.


Thank you
by dhongu
13.08.2006, 15:32
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: HTTP tunneling
Replies: 0
Views: 500

HTTP tunneling

HTTP Tunneling is a method for connecting to a MySQL server that uses the same protocol (http://) and the same port (port 80) as a webserver does. It is used while your ISPs do not allow direct connections to their MySQL server, but allows establishing HTTP connections. It is possible to make a appl...
by dhongu
31.07.2006, 14:32
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: muti update table
Replies: 4
Views: 899

object Form2: TForm2 object DBGrid1: TDBGrid DataSource = DataSource1 end object DBNavigator1: TDBNavigator DataSource = DataSource1 end object ZUpdateSQL1: TZUpdateSQL InsertSQL.Strings = ( 'insert into a (id) value (:id);' '' 'insert into b (id,name) values ( :id, :name );') ModifySQL.Strings = (...
by dhongu
30.07.2006, 07:17
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: muti update table
Replies: 4
Views: 899

Use TZUpdateSQL and define InsertSQl, ModifiySQL, DeleteSQL property.


For update table a: update a set a.id = :id where a.id = :old_id
by dhongu
11.01.2006, 14:37
Forum: Feature Requests
Topic: MySQL 5
Replies: 19
Views: 7433

In unit ZPlainMySqlDriver IZMySQLPlainDriver = interface (IZPlainDriver) ['{D1CB3F6C-72A1-4125-873F-791202ACC5F0}'] .... function NextResult(Handle: PZMySQLConnect):Integer; .... end; {** Implements a driver for MySQL 4.1 } TZMySQL41PlainDriver = class (TZAbstractObject, IZPlainDriver, IZMySQLPlainD...
by dhongu
19.12.2005, 08:44
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Zeos 6.5.1 and MySQL 5.1 - charset confusion
Replies: 5
Views: 1632

Look at [ 1176107 ] Patch for MySQL 4.1 Character Set
http://sourceforge.net/tracker/index.ph ... tid=415826
by dhongu
19.12.2005, 07:08
Forum: Feature Requests
Topic: MySQL 5
Replies: 19
Views: 7433

I resolved. I use path [ 1220418 ] !Quick and durty! patch for 5.x stored procedures http://sourceforge.net/tracker/index.php?func=detail&aid=1220418&group_id=35994&atid=415826 I implement link to function mysql_next_result. http://dev.mysql.com/doc/refman/5.0/en/c-api-multiple-queries.h...