Search found 43 matches

by tintinux
10.02.2021, 14:31
Forum: ZeosLib 7.2 Forum
Topic: Weird issue with some characters in a script
Replies: 3
Views: 253

Weird issue with some characters in a script

Hi I'm using 7.2.6 with Lazarus 2.0.10, connected to a MariaDb 10 Database, utf-8 charset selected everywhere. I get a syntax error when I execute in a ZSqlProcessor this : CREATE OR REPLACE TABLE Countries( CountryName VARCHAR(50) NOT NULL) DEFAULT CHARSET=utf8 ENGINE=InnoDB; INSERT INTO Countries ...
by tintinux
21.11.2019, 17:33
Forum: ZeosLib 7.2 Forum
Topic: Zeos references Lazarus LCL
Replies: 2
Views: 199

Zeos references Lazarus LCL

Hi I'm using ZeosLib mainly with Lazarus and I found that the Zcore package references LCL, meaning that we can't make light console or web applications with ZeosLib components. I don't remember if it is similar for DELPHI, I don't use it anymore. I don't see any theoretical reason for this restrict...
by tintinux
06.04.2017, 16:39
Forum: ZeosLib 7.2 Forum
Topic: remove warnings with lazarus
Replies: 3
Views: 542

Re: remove warnings with lazarus

Hi I was using and testing the 7.2.1-RC.zip, available for download in the file section, because I can't connect to SVN from here. It looks like this download is not uptodate against the svn testing-7.2 branch. If it is not possible to update it (and I understand that it is time consuming) better to...
by tintinux
06.04.2017, 08:27
Forum: ZeosLib 7.2 Forum
Topic: remove warnings with lazarus
Replies: 3
Views: 542

remove warnings with lazarus

Hi

I suggest replacing the files packages/lazarus/*.lpk by those in the attached zip, to remove a huge number of warnings when we compile in Lazarus.

And BTW, the readme can be updated too...

Best regards

Tintinux
by tintinux
22.02.2017, 08:26
Forum: ZeosLib 7.2 Forum
Topic: [SOLVED] Access violation Updating a Blob
Replies: 3
Views: 733

Re: Access violation Updating a Blob

As specified in the SF ticket, this is now solved.
Thanks again.
by tintinux
13.01.2017, 18:40
Forum: ZeosLib 7.2 Forum
Topic: [SOLVED] Access violation Updating a Blob
Replies: 3
Views: 733

Re: Access violation Updating a Blob

Hi

Is there any news about this issue ?

I'm unable to understand what is wrong and to find if it is specific to one environment.
I could now make a test with Delphi 2007, but may be this will not be very helpful....

Do you need more informations ?

Best regards
by tintinux
10.10.2016, 12:43
Forum: ZeosLib 7.2 Forum
Topic: [SOLVED] Access violation Updating a Blob
Replies: 3
Views: 733

[SOLVED] Access violation Updating a Blob

Hi Using ZeosLib 7.2.1-rc with Lazarus 1.6, I have an access violation when I execute the UPDATE Query in the code below. Image is a TImage remaining empty. The field Test is a Blob. procedure PictureToParam(const aPicture: TPicture; const aParam: TParam); var Stream: TStream; begin Stream := TMemor...
by tintinux
04.10.2016, 18:03
Forum: ZeosLib 7.2 Forum
Topic: MySql 5.7 drivers
Replies: 1
Views: 2666

Re: MySql 5.7 drivers

Please see this topic for a solution to be tested.

Best regards
by tintinux
04.10.2016, 17:58
Forum: ZeosLib 7.2 Forum
Topic: MySql on OS/X
Replies: 3
Views: 1263

Re: MySql on OS/X

Hi Attached is an update of ZPlainMySqlDriver with more libraries : * search for version specific drivers for MySql 5.6 and 5.7 on all systems * search for 2 generic drivers (mariadb and libmysqlclient) on Linux and Mac OS/X (libmysqlclient has unfortunately been removed) * search for correct driver...
by tintinux
04.10.2016, 15:57
Forum: ZeosLib 7.2 Forum
Topic: MySql on OS/X
Replies: 3
Views: 1263

Re: MySql on OS/X

Hi

I have just discovered a bug on 7.2, I will make a topic for it, but first I went back to 7.1.4 to finish this subject.

OK, I will send you as soon as possible a MySqlDriver.pas tested on OSX, Windows and Linux.

Best regards
by tintinux
04.10.2016, 10:40
Forum: ZeosLib 7.2 Forum
Topic: MySql on OS/X
Replies: 3
Views: 1263

MySql on OS/X

Hi I can use successfully ZeosLib on MAC OS/X with applications created by Lazarus. However, installation is a little complex for non technical end users, and difficult to automate, because MySql drivers for OS/X are named, for example, libmysqlclient.18.dylib instead of libmysqlclient.dylib.18 expe...
by tintinux
04.10.2016, 10:28
Forum: ZeosLib 7.2 Forum
Topic: MySql 5.7 drivers
Replies: 1
Views: 2666

MySql 5.7 drivers

Hi Linux Ubuntu 16.04 LTS software repository includes MySql 5.7 and the drivers are libmysql.so.20 To allow a seamless installation of Zeos based application, I think ZPlainMySqlDriver should be modified like this : unit ZPlainMySqlDriver; interface {$I ZPlain.inc} uses Classes, {$IFDEF MSEgui}mcla...
by tintinux
01.09.2015, 21:39
Forum: ZeosLib 7.2 Forum
Topic: TCustomZxxx components ?
Replies: 3
Views: 576

Re: TCustomZxxx components ?

Hi I realized that the job has already been done in 7.2 ! The component named TZAbstractConnection can be used as an ancestor, and it was not possible in 7.1 I would have named it TCustomZConnection to remain in the standards, but that is not very important. And it looks like 7.2 is working fine wit...
by tintinux
01.09.2015, 07:57
Forum: ZeosLib 7.2 Forum
Topic: TCustomZxxx components ?
Replies: 3
Views: 576

Re: TCustomZxxx components ?

OK, thanks.

I'll try to make the patch for 7.2, but It could certainly be used for 7.3 also
Should be able to send it within a week...

Regards
by tintinux
31.08.2015, 16:05
Forum: ZeosLib 7.2 Forum
Topic: TCustomZxxx components ?
Replies: 3
Views: 576

TCustomZxxx components ?

Hi Ii would be useful to have TCustom components, ancestors of TZConnection, TZTable and TZQuery... with same properties and methods but protected instead of public, like others in the VCL/LCL. This would allow us to inherit freely our components from them, hiding some properties that I don't want t...