Hi
In Zeos 8.0 the LoadFromFile method of the new type TZParam is marked as deprecated, and the message is "use Overload instead"
What does it mean ? Overload is a reserved word, can't be a method name...
Thanks
Search found 44 matches
- 16.10.2024, 11:06
- Forum: ZeosLib 7.3/8.0 Forum
- Topic: How to replace TZParam.LoadFromFile
- Replies: 2
- Views: 79
- 10.02.2021, 14:31
- Forum: ZeosLib 7.2 Forum
- Topic: Weird issue with some characters in a script
- Replies: 3
- Views: 295
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 ...
- 21.11.2019, 17:33
- Forum: ZeosLib 7.2 Forum
- Topic: Zeos references Lazarus LCL
- Replies: 2
- Views: 217
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...
- 06.04.2017, 16:39
- Forum: ZeosLib 7.2 Forum
- Topic: remove warnings with lazarus
- Replies: 3
- Views: 572
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...
- 06.04.2017, 08:27
- Forum: ZeosLib 7.2 Forum
- Topic: remove warnings with lazarus
- Replies: 3
- Views: 572
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
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
- 22.02.2017, 08:26
- Forum: ZeosLib 7.2 Forum
- Topic: [SOLVED] Access violation Updating a Blob
- Replies: 3
- Views: 794
Re: Access violation Updating a Blob
As specified in the SF ticket, this is now solved.
Thanks again.
Thanks again.
- 13.01.2017, 18:40
- Forum: ZeosLib 7.2 Forum
- Topic: [SOLVED] Access violation Updating a Blob
- Replies: 3
- Views: 794
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
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
- 10.10.2016, 12:43
- Forum: ZeosLib 7.2 Forum
- Topic: [SOLVED] Access violation Updating a Blob
- Replies: 3
- Views: 794
[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...
- 04.10.2016, 18:03
- Forum: ZeosLib 7.2 Forum
- Topic: MySql 5.7 drivers
- Replies: 1
- Views: 2741
- 04.10.2016, 17:58
- Forum: ZeosLib 7.2 Forum
- Topic: MySql on OS/X
- Replies: 3
- Views: 1319
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...
- 04.10.2016, 15:57
- Forum: ZeosLib 7.2 Forum
- Topic: MySql on OS/X
- Replies: 3
- Views: 1319
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
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
- 04.10.2016, 10:40
- Forum: ZeosLib 7.2 Forum
- Topic: MySql on OS/X
- Replies: 3
- Views: 1319
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...
- 04.10.2016, 10:28
- Forum: ZeosLib 7.2 Forum
- Topic: MySql 5.7 drivers
- Replies: 1
- Views: 2741
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...
- 01.09.2015, 21:39
- Forum: ZeosLib 7.2 Forum
- Topic: TCustomZxxx components ?
- Replies: 3
- Views: 622
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...
- 01.09.2015, 07:57
- Forum: ZeosLib 7.2 Forum
- Topic: TCustomZxxx components ?
- Replies: 3
- Views: 622
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
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