Fw: Anyone know a wrapper for the mysql headers to delphi .pas?

Fw: Anyone know a wrapper for the mysql headers to delphi .pas?

am 31.01.2005 19:06:04 von jakexblaster

I've already tried all that ones. The best one is the
" http://www.mysql.com/Downloads/Contrib/Udmysql.pas A wrapper for
libmysql.dll for usage in Delphi. By Reiner Sombrowsky. " but it crashes.
I'm using the MySQL Server v4.1.7. When I try to use, the S.O. says "No
export function in LIBMYSQL.DLL called mysql_connect". When I changed it to
mysql_real_connect, the program ran, but when I tried to connect, I got a
GPF. Any suggestion? (Ps.: I changed the password and used the main database
a.k.a. mysql, and tried also with the test database.

----- Original Message -----
From: "Daniel da Veiga"
To: "MySQL Win32 List"
Sent: Monday, January 31, 2005 4:38 PM
Subject: Re: Anyone know a wrapper for the mysql headers to delphi .pas?


> http://mysqld.active-venture.com/Contrib_APIs.html
> http://ftp.iranscience.net/pub/databases/mysql/downloads/con trib.html
>
> Dunno if that meets your needs, I was using the wrapper from
> Sombrowsky, it worked fine, but my project kinda died for lack of
> resources and time, so, I never had the time to use all of it...
>
> Anyway, hope that helps,
>
>
> On Mon, 31 Jan 2005 15:06:59 -0200, jakexblaster@google
> wrote:
> > Im searching a wrapper to use in the Delphi6. I don't wanna use ADO or
> > dbExpress, only the libMySQL.dll. Do anyone know?
> >
> > --
> > MySQL Windows Mailing List
> > For list archives: http://lists.mysql.com/win32
> > To unsubscribe:
http://lists.mysql.com/win32?unsub=danieldaveiga@gmail.com
> >
> >
>
>
> --
> Daniel da Veiga
> Computer Operator - RS - Brazil
>
> --
> MySQL Windows Mailing List
> For list archives: http://lists.mysql.com/win32
> To unsubscribe: http://lists.mysql.com/win32?unsub=msc2004@ubbi.com.br
>
>


--
MySQL Windows Mailing List
For list archives: http://lists.mysql.com/win32
To unsubscribe: http://lists.mysql.com/win32?unsub=gcdmw-win32@m.gmane.org

Re: Fw: Anyone know a wrapper for the mysql headers to delphi .pas?

am 31.01.2005 20:21:10 von Daniel da Veiga

Have you tried MyVBQL?
Its a good API for MySQL, I use it with VBA projects to access MySQL 4.1.7.
You get it at:

http://www.icarz.com/mysql/

Maybe you can try it...

Regards,

On Mon, 31 Jan 2005 16:06:04 -0200, jakexblaster@google
wrote:
> I've already tried all that ones. The best one is the
> " http://www.mysql.com/Downloads/Contrib/Udmysql.pas A wrapper for
> libmysql.dll for usage in Delphi. By Reiner Sombrowsky. " but it crashes.
> I'm using the MySQL Server v4.1.7. When I try to use, the S.O. says "No
> export function in LIBMYSQL.DLL called mysql_connect". When I changed it to
> mysql_real_connect, the program ran, but when I tried to connect, I got a
> GPF. Any suggestion? (Ps.: I changed the password and used the main database
> a.k.a. mysql, and tried also with the test database.
>
> ----- Original Message -----
> From: "Daniel da Veiga"
> To: "MySQL Win32 List"
> Sent: Monday, January 31, 2005 4:38 PM
> Subject: Re: Anyone know a wrapper for the mysql headers to delphi .pas?
>
> > http://mysqld.active-venture.com/Contrib_APIs.html
> > http://ftp.iranscience.net/pub/databases/mysql/downloads/con trib.html
> >
> > Dunno if that meets your needs, I was using the wrapper from
> > Sombrowsky, it worked fine, but my project kinda died for lack of
> > resources and time, so, I never had the time to use all of it...
> >
> > Anyway, hope that helps,
> >
> >
> > On Mon, 31 Jan 2005 15:06:59 -0200, jakexblaster@google
> > wrote:
> > > Im searching a wrapper to use in the Delphi6. I don't wanna use ADO or
> > > dbExpress, only the libMySQL.dll. Do anyone know?
> > >
> > > --
> > > MySQL Windows Mailing List
> > > For list archives: http://lists.mysql.com/win32
> > > To unsubscribe:
> http://lists.mysql.com/win32?unsub=danieldaveiga@gmail.com
> > >
> > >
> >
> >
> > --
> > Daniel da Veiga
> > Computer Operator - RS - Brazil
> >
> > --
> > MySQL Windows Mailing List
> > For list archives: http://lists.mysql.com/win32
> > To unsubscribe: http://lists.mysql.com/win32?unsub=msc2004@ubbi.com.br
> >
> >
>
> --
> MySQL Windows Mailing List
> For list archives: http://lists.mysql.com/win32
> To unsubscribe: http://lists.mysql.com/win32?unsub=danieldaveiga@gmail.com
>
>


--
Daniel da Veiga
Computer Operator - RS - Brazil

--
MySQL Windows Mailing List
For list archives: http://lists.mysql.com/win32
To unsubscribe: http://lists.mysql.com/win32?unsub=gcdmw-win32@m.gmane.org

Re: Fw: Anyone know a wrapper for the mysql headers to delphi .pas?

am 31.01.2005 20:30:53 von Daniel da Veiga

Sorry, wrong language, you need a Delphi API, well, I don't have my
old projects, so, I cannot help you with code or suggestions (I don't
write Delphi anymore, using Java), but I remember it worked, my
project was a simple scheduler. Besides ADO and ODBC, I don't think
you have many options...

A quick search gave me this:

http://www.fichtner.net/delphi/mysql.delphi.phtml
http://delphi.about.com/cs/toppicks/tp/aatpmysql.htm

You may check it out.


On Mon, 31 Jan 2005 17:21:10 -0200, Daniel da Veiga
wrote:
> Have you tried MyVBQL?
> Its a good API for MySQL, I use it with VBA projects to access MySQL 4.1.7.
> You get it at:
>
> http://www.icarz.com/mysql/
>
> Maybe you can try it...
>
> Regards,
>
> On Mon, 31 Jan 2005 16:06:04 -0200, jakexblaster@google
> wrote:
> > I've already tried all that ones. The best one is the
> > " http://www.mysql.com/Downloads/Contrib/Udmysql.pas A wrapper for
> > libmysql.dll for usage in Delphi. By Reiner Sombrowsky. " but it crashes.
> > I'm using the MySQL Server v4.1.7. When I try to use, the S.O. says "No
> > export function in LIBMYSQL.DLL called mysql_connect". When I changed it to
> > mysql_real_connect, the program ran, but when I tried to connect, I got a
> > GPF. Any suggestion? (Ps.: I changed the password and used the main database
> > a.k.a. mysql, and tried also with the test database.
> >
> > ----- Original Message -----
> > From: "Daniel da Veiga"
> > To: "MySQL Win32 List"
> > Sent: Monday, January 31, 2005 4:38 PM
> > Subject: Re: Anyone know a wrapper for the mysql headers to delphi .pas?
> >
> > > http://mysqld.active-venture.com/Contrib_APIs.html
> > > http://ftp.iranscience.net/pub/databases/mysql/downloads/con trib.html
> > >
> > > Dunno if that meets your needs, I was using the wrapper from
> > > Sombrowsky, it worked fine, but my project kinda died for lack of
> > > resources and time, so, I never had the time to use all of it...
> > >
> > > Anyway, hope that helps,
> > >
> > >
> > > On Mon, 31 Jan 2005 15:06:59 -0200, jakexblaster@google
> > > wrote:
> > > > Im searching a wrapper to use in the Delphi6. I don't wanna use ADO or
> > > > dbExpress, only the libMySQL.dll. Do anyone know?
> > > >
> > > > --
> > > > MySQL Windows Mailing List
> > > > For list archives: http://lists.mysql.com/win32
> > > > To unsubscribe:
> > http://lists.mysql.com/win32?unsub=danieldaveiga@gmail.com
> > > >
> > > >
> > >
> > >
> > > --
> > > Daniel da Veiga
> > > Computer Operator - RS - Brazil
> > >
> > > --
> > > MySQL Windows Mailing List
> > > For list archives: http://lists.mysql.com/win32
> > > To unsubscribe: http://lists.mysql.com/win32?unsub=msc2004@ubbi.com.br
> > >
> > >
> >
> > --
> > MySQL Windows Mailing List
> > For list archives: http://lists.mysql.com/win32
> > To unsubscribe: http://lists.mysql.com/win32?unsub=danieldaveiga@gmail.com
> >
> >
>
>
> --
> Daniel da Veiga
> Computer Operator - RS - Brazil
>


--
Daniel da Veiga
Computer Operator - RS - Brazil

--
MySQL Windows Mailing List
For list archives: http://lists.mysql.com/win32
To unsubscribe: http://lists.mysql.com/win32?unsub=gcdmw-win32@m.gmane.org