Re: MySQL compatibility with Windows Server 2008

2008-08-15 Thread Reggie Burnett
.NET connector is fine. ODBC should be ok but I'm not 100% sure. Jesse wrote: We will be purchasing a server pretty soon with Windows Server 2008 on it. I have heard that MySQL is not compatible with WS2008. Is that true? I've also seen instructions for installing MySQL 5.1 on WS2008. Is

Re: MySQL compatibility with Windows Server 2008

2008-08-15 Thread Reggie Burnett
It can depend on the version. Earlier versions of MySQL had problems with protocols like shared memory on Vista. Use a recent build of 5.0 or 5.1 and you should be ok. Jesse wrote: .NET connector is fine. ODBC should be ok but I'm not 100% sure. How about MySQL itself? Thanks, Jesse

RE: DOT.NET Connector and Stored Procedures: Exception trying to retrieve parameter info

2005-12-05 Thread Reggie Burnett
Jesse is right. You use the ? to start a parameter name. -Original Message- From: Rehcra [mailto:[EMAIL PROTECTED] Sent: Friday, December 02, 2005 2:26 PM To: Jesse Castleberry; mysql@lists.mysql.com Subject: Re: DOT.NET Connector and Stored Procedures: Exception trying to retrieve

RE: .NET Connector Output Values

2005-12-05 Thread Reggie Burnett
This is not going to work. If you are using MySQLCommandBuilder, then the auto-generated ID will be pulled back for you (basically because it does a select last_insert_id() internally). Or you can issue a select last_insert_id() manually to determine the last generated id. -Original

RE: calling procedures from the .NET provider

2005-11-29 Thread Reggie Burnett
Colin Currently executing a stored procedure also requires select permissions on the mysql.proc table. This is a current implementation requirement. This should disappear when we have INFORMATION SCHEMA support. Reggie -Original Message- From: Colin Shreffler [mailto:[EMAIL

RE: C API : Problem using multi-statements

2005-05-06 Thread Reggie Burnett
Jeremiah I don't use the client library in my work but this should work from 4.1 on. -Reggie -Original Message- From: Jeremiah Gowdy [mailto:[EMAIL PROTECTED] Sent: Friday, May 06, 2005 11:19 AM To: [EMAIL PROTECTED]; mysql@lists.mysql.com Subject: Re: C API : Problem using

RE: mysql-mysqld connection

2005-05-03 Thread Reggie Burnett
Just to echo the thoughts from Jeremiah, we have several freely available open source connectors that work *VERY HARD* tracking the protocol so it's hard to understand a situation where you would need to write your own implementation. -Reggie -Original Message- From: Nikola

Re: MySQL 5.0.4-beta has been released

2005-04-19 Thread Reggie Burnett
What were you doing when it failed? What type of connections was it handling? Hmmm, it ran for about two hours (Win32) then crashed. I don't receive any error messages to post. Server just stops??? - Original Message - From: Martijn Tonies [EMAIL PROTECTED] To: Joerg Bruehe [EMAIL

RE: How to create an Installation Package using VB.NET?

2004-07-14 Thread Reggie Burnett
I'm sure there is some subset of files that you can include, based on what features you want to make available to your clients. -reggie -Original Message- From: Roy Brown [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 14, 2004 10:14 AM To: 'Reggie Burnett'; [EMAIL PROTECTED

RE: How to create an Installation Package using VB.NET?

2004-07-13 Thread Reggie Burnett
Roy I don't think we provide any merge module for our ODBC installation yet, but the changes that the odbc installer makes are very trivial so you could make them yourself. Are you going to run the mysql installer or perform the install yourself? If you are going to perform the install yourself,

Re: System.Data.MySql

2004-07-01 Thread Reggie Burnett
Yes. The ByteFX provider has been aquired by MySql and will be released shortly as the supported provider. It will not have the namespace System.Data.MySql since System.* is reserved for bits of the framework shipped as native parts of the framework. The namespace will by

RE: Using BYTEFX to connect to MySql , closing connection do not release the connection.

2004-04-09 Thread Reggie Burnett
/mysqlclient/MySqlPoolManage r. cs?rev=1.4 it has been great help! :-)TweeWan -Original Message- From: Reggie Burnett [mailto:[EMAIL PROTECTED] Sent: 08 April 2004 22:23 To: 'tweewan.wong'; [EMAIL PROTECTED] Subject: RE: Using BYTEFX to connect to MySql , closing connection do

RE: Using BYTEFX to connect to MySql , closing connection do not release the connection.

2004-04-07 Thread Reggie Burnett
I'm not sure why this is happening, but the behavior you described in the first email is correct pooling behavior. By default, connection pooling is enabled which means connections are not killed when they are closed but remain open and able to serve new connections if necessary. Only when the

RE: Question: using Visual Studio.NET

2003-07-16 Thread Reggie Burnett
You can also use my native ADO.Net provider for MySql found at http://www.bytefx.com Thanks Reggie -Original Message- From: Veysel Harun Sahin [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 5:15 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Question: using

RE: MySQLDriverCS Data Typing problem in tables

2003-07-09 Thread Reggie Burnett
Glad I can help. The home page for the product is www.bytefx.com, however you can post bugs/patches/suggestions at www.sourceforge.net/projects/mysqlnet until I get those features implemented at my site. Reggie -Original Message- From: Kimberly Clark [mailto:[EMAIL PROTECTED] Sent:

RE: MySQLDriverCS Data Typing problem in tables

2003-07-07 Thread Reggie Burnett
Kim I don't know anything about MySQLDriverCS but if you continue to have problems, you might try my provider at www.bytefx.com Thanks Reggie -Original Message- From: Kimberly Clark [mailto:[EMAIL PROTECTED] Sent: Monday, July 07, 2003 10:14 AM To: [EMAIL PROTECTED] Subject:

multiple versions of MySql

2003-06-18 Thread Reggie Burnett
What problems am I going to have with 3.23, 4.0.13, and 4.1 alpha installed on the same machine (Win XP?) I am developing some software and wanting to test against these versions but I am starting to have intermittent problems with MySql-Front where it declares that a table is now missing.

RE: multiple versions of MySql

2003-06-18 Thread Reggie Burnett
[mailto:[EMAIL PROTECTED] Sent: Wednesday, June 18, 2003 10:31 AM To: Reggie Burnett Cc: MySQL LIST Subject: Re: multiple versions of MySql Importance: High What about the mysql client? Did it report that table exists? Test mysqlc from the all versions from your computer. Iulian