Search found 24 matches

by manz
23.02.2010, 09:25
Forum: 6.6 - stable
Topic: ZConnection Problem
Replies: 2
Views: 472

For design time and testing , you cannot manually, because the Dataset should link into database.

But, when run-time mode, you can use multiple database without state it first when running.

Manz
by manz
27.10.2009, 04:48
Forum: 6.6 - stable
Topic: How to optimize this codding
Replies: 8
Views: 971

dear andresayang

you may optimize your mysql server configuration to handling it with the good chosen engine ... such as InnoDB.

Manz
by manz
12.10.2009, 04:38
Forum: ZeosLib 7.0 Beta Forum
Topic: Problem with delphi 2009 and zeos 7
Replies: 1
Views: 516

you may copy the zeos bpl all parts at delphi12/build into RAD Studio\6.0\Bpl ...

try again with install ...

Thanks
Man'z
by manz
12.10.2009, 04:02
Forum: ZeosLib 7.0 Beta Forum
Topic: Zeos 7 Alpha and Delphi 2009 Support - Official Thread
Replies: 97
Views: 28832

Hi All ... Great thanks to MDaems that has been good tutoring me to trace :prog: about the previous error for BLOB (JPG, PNG) in MySQL. Thats already solved and can be use at SVN 711. Even though this may not an ideal solution. In my site, not only MySQLStatement.pas has been changed from UTF8String...
by manz
20.08.2009, 08:37
Forum: MySQL
Topic: Reg How To Insert Image File Into MySQL Blob Filed In Delphi
Replies: 3
Views: 5434

Dear Varathasiva,

you miss one line of it :

J := TJPEGImage.Create;

before you can do J.LoadFromFile(....

Thanks
Man'z
by manz
20.08.2009, 07:27
Forum: MySQL
Topic: mysql connection error on the localnetwork
Replies: 9
Views: 1457

@capella ... as per mdaems provide your info, did you already try like this 1: Can you connect from your pc to the server using the mysql command line client with this command : mysql -h192.168.2.4 -u<user> -p<password> of course, you should install mysql at your client machine to connect to server ...
by manz
20.08.2009, 03:45
Forum: ZeosLib 7.0 Beta Forum
Topic: Zeos 7 Alpha and Delphi 2009 Support - Official Thread
Replies: 97
Views: 28832

follow at my previous post ... we trying to another formats like BMP, PNG ... same error ..

in PNG formats, gdi+ error
in BMP read from stream error...

Thanks
Man'z
by manz
20.08.2009, 03:35
Forum: ZeosLib 7.0 Beta Forum
Topic: Zeos 7 Alpha and Delphi 2009 Support - Official Thread
Replies: 97
Views: 28832

Hi All, We trying a small thing and had been posted at zeosbugs. This little snapshot my code: procedure TForm1.Button1Click%u28Sender%u3a TObject%u29; var J%u3a TJPEGImage; begin J %u3a= TJPEGImage.Create; J.LoadFromFile%u28'C%u3a\Manz\Projects\Web\hrms\public_html\images\photo\1357a.jpg'%u29; zTab...
by manz
20.08.2009, 02:38
Forum: MySQL
Topic: Reg How To Insert Image File Into MySQL Blob Filed In Delphi
Replies: 3
Views: 5434

Hi varathasiva .. In MySQL you may used LONGBLOB instead BLOB data type. for the saving image you may try this : var J: TJPEGImage; begin J := TJPEGImage.Create; J.LoadFromFile('C:\Manz\Projects\Web\hrms\public_html\images\photo\1357a.jpg'); zTable2.Active := true; ztable2.Append; ztable2.FieldByNam...
by manz
18.02.2009, 02:47
Forum: User Patches
Topic: Trunk ZIP Update
Replies: 2
Views: 501

Wow .. thats correct .. thanks seawolf
by manz
17.02.2009, 07:05
Forum: 6.6 - stable
Topic: StoredProcedure not shown at design neither runtime
Replies: 1
Views: 385

StoredProcedure not shown at design neither runtime

Dear All, We using D2007 December Update, with Mysql and Zeos 6.6.4-stable. Currently we using the stored procedure, but at zStoredProc1.StoredProcName (at design time) not shown, even the connection already connected to the database. This zStoredProc1 at runtime want to use the parameters: with zSt...
by manz
17.02.2009, 06:38
Forum: User Patches
Topic: Trunk ZIP Update
Replies: 2
Views: 501

Trunk ZIP Update

Dear MDaems or ZeosLibs people

Where is download location for zeoslib trunk zip update ?

long time ago MDaems already give me the link, but my computer crashed, so the link is missing .


Thanks
Man'z
by manz
16.01.2009, 02:43
Forum: 6.6 - stable
Topic: TZAbstractDataset.Destroy: error
Replies: 3
Views: 519

AIS.exe is my project was been created.

Previously we use 6.6.3 without problem, now when i upgrade with clean install and build the component use the 6.6.4. This error happen.

Sorry, i use the mysql 5.1.30. and not multi-threaded application.

I'll try to post at zeosbug thread.

Thanks.
by manz
15.01.2009, 02:52
Forum: 6.6 - stable
Topic: TZAbstractDataset.Destroy: error
Replies: 3
Views: 519

TZAbstractDataset.Destroy: error

Dear all, we use version 6.6.4-stable just upgraded from 6.6.3-stable. We put the TZConnection1, TZTable1, and TZQuery1 and run the projects, its look normally. But, when we close the application (myprojects) that has an error: First chance exception at $75C642EB. Exception class EAccessViolation wi...
by manz
12.01.2009, 09:14
Forum: MySQL
Topic: ZQuery execute sql
Replies: 6
Views: 1430

Ok, Thanks Mark ...

before we create script-like, we tested first one-by-one statements to make sure the sql in good result.

Thanks again Mark