compiled mysql with openssl support under win98se
nivi (Niveditha Arunachalam)
u will need vc++6
first compile the openssl library by following instructions in install.w32
file
load mysql project in vc++
then
1 include the 2 openssl library files libeay32.lib and ssleay32.lib in
the project
2 add HAVE_OPENSSL definition to the existing ones (to all projects)
3 add file: des_key_file.cpp to mysqld project
4 make following change in des_key_file.cpp
replace: include <mysql_priv.h> by: include "mysql_priv.h"
hormuzd irani
hormuzdirani [at] hotmail.com
____________________________________________________________ _____
Test Your Memory and Win Amazing Prizes!
http://adfarm.mediaplex.com/ad/ck/4686-26272-10936-429?ck=Br ainTeaser DVD
Players, Digicams & more!
--
MySQL Windows Mailing List
For list archives: http://lists.mysql.com/win32
To unsubscribe: http://lists.mysql.com/win32?unsub=gcdmw-win32 [at] m.gmane.org
MySQL Parameter with MySQL .NET connector
Why is no value being inserted into my table when using the MySQL Parameter?
sql = "insert into roles (rolename) ";
sql += "VALUES ( [at] rolename)";
MySqlCommand objCommand = new MySqlCommand(sql, objConnection);
objCommand.Parameters.Add(new MySqlParameter(" [at] rolename", txtName));
???
The value txtName I have checked and defniately has a value???
--
MySQL Windows Mailing List
For list archives: http://lists.mysql.com/win32
To unsubscribe: http://lists.mysql.com/win32?unsub=gcdmw-win32 [at] m.gmane.org
Re: MySQL Parameter with MySQL .NET connector
Don't worry, I eventually found one uses a ? instead of a [at]
----- Original Message -----
From: "Greg Quinn" <greg [at] officium.co.za>
To: <win32 [at] lists.mysql.com>
Sent: Thursday, June 23, 2005 12:53 PM
Subject: MySQL Parameter with MySQL .NET connector
> Why is no value being inserted into my table when using the MySQL
> Parameter?
>
> sql = "insert into roles (rolename) ";
> sql += "VALUES ( [at] rolename)";
>
> MySqlCommand objCommand = new MySqlCommand(sql, objConnection);
> objCommand.Parameters.Add(new MySqlParameter(" [at] rolename", txtName));
>
> ???
>
> The value txtName I have checked and defniately has a value???
>
> --
> MySQL Windows Mailing List
> For list archives: http://lists.mysql.com/win32
> To unsubscribe: http://lists.mysql.com/win32?unsub=greg [at] i-online.co.za
>
--
MySQL Windows Mailing List
For list archives: http://lists.mysql.com/win32
To unsubscribe: http://lists.mysql.com/win32?unsub=gcdmw-win32 [at] m.gmane.org
RE: MySQL Parameter with MySQL .NET connector
Early versions of the connector used [at] but we switched to the ? Symbol since
[at] varname is special to MySQL. If you have a lot of code that uses [at] , you
can add oldsyntax=yes to your connection string and still use the [at] syntax.
> -----Original Message-----
> From: Greg Quinn [mailto:greg [at] officium.co.za]
> Sent: Thursday, June 23, 2005 6:11 AM
> To: win32 [at] lists.mysql.com
> Subject: Re: MySQL Parameter with MySQL .NET connector
>
> Don't worry, I eventually found one uses a ? instead of a [at]
>
> ----- Original Message -----
> From: "Greg Quinn" <greg [at] officium.co.za>
> To: <win32 [at] lists.mysql.com>
> Sent: Thursday, June 23, 2005 12:53 PM
> Subject: MySQL Parameter with MySQL .NET connector
>
>
> > Why is no value being inserted into my table when using the MySQL
> > Parameter?
> >
> > sql = "insert into roles (rolename) ";
> > sql += "VALUES ( [at] rolename)";
> >
> > MySqlCommand objCommand = new MySqlCommand(sql, objConnection);
> > objCommand.Parameters.Add(new MySqlParameter(" [at] rolename", txtName));
> >
> > ???
> >
> > The value txtName I have checked and defniately has a value???
> >
> > --
> > MySQL Windows Mailing List
> > For list archives: http://lists.mysql.com/win32
> > To unsubscribe:
> http://lists.mysql.com/win32?unsub=greg [at] i-online.co.za
> >
>
>
> --
> MySQL Windows Mailing List
> For list archives: http://lists.mysql.com/win32
> To unsubscribe: http://lists.mysql.com/win32?unsub=rykr [at] comcast.net
>
>
--
MySQL Windows Mailing List
For list archives: http://lists.mysql.com/win32
To unsubscribe: http://lists.mysql.com/win32?unsub=gcdmw-win32 [at] m.gmane.org