Yes, all the connection string keys and values are case insensitive
> -----Original Message-----
> From: Kevin Turner [mailto:kevin.turner@stripped]
> Sent: Monday, October 03, 2005 3:14 PM
> To: dotnet@stripped
> Subject: RE: MySQL Connector/Net 1.0.6 is released.
>
> I take it the downloadable installer has not yet been updated.
>
> Can you confirm that the two new parms are case insensitive
> and that they are:
> "Cache server configuration=yes"
> and
> "Reset pooled connections=no"
>
> -----Original Message-----
> From: Reggie Burnett [mailto:reggie@stripped]
> Sent: 03 October 2005 20:24
> To: 'Jorge Bastos'; dotnet@stripped
> Subject: RE: MySQL Connector/Net 1.0.6 is released.
>
> Sorry guys. I just confirmed that this slipped through the
> cracks. The docs have been udpated now.
>
> > -----Original Message-----
> > From: Jorge Bastos [mailto:mysql.jorge@stripped]
> > Sent: Monday, October 03, 2005 11:59 AM
> > To: dotnet@stripped
> > Subject: Fw: MySQL Connector/Net 1.0.6 is released.
> >
> > Hi there
> >
> > I've made the same question a few days ago...
> > There's no info about that in the documentation.
> > Taking the change, another thing, the part of the MySqlDB
> Emuneration
> > should be updated also, there are some fields missing.
> > At least me, i control myself with this documentation to look the
> > mysql data types fields, it's mutch easier and faster than
> the mysql
> > documentation.
> >
> > Jorge Bastos
> >
> >
> > ----- Original Message -----
> > From: "Kevin Turner" <kevin.turner@stripped>
> > To: <dotnet@stripped>
> > Sent: Monday, October 03, 2005 4:27 PM
> > Subject: RE: MySQL Connector/Net 1.0.6 is released.
> >
> >
> > Other than what you have mentioned below, I can't find
> anything in the
> > 1.0.6 documentation that mentions "cache server
> configuration=yes" and
> > "Reset pooled connections=no"
> >
> > Am I looking in the wrong place ??
> >
> >
> > ----- Original Message -----
> > From: "Reggie Burnett" <reggie@stripped>
> > To: <annc@stripped>; <dotnet@stripped>
> > Sent: Tuesday, September 27, 2005 9:44 PM
> > Subject: MySQL Connector/Net 1.0.6 is released.
> >
> >
> > > Hi,
> > >
> > > MySQL Connector/Net 1.0.6, a new version of the
> > fully-managed, ADO.Net
> > > provider for the MySQL database system has been released. This
> > release is
> > > the latest production release of the 1.0 series and is
> suitable for
> > use
> > > with
> > > any MySQL version including MySQL 4.1 or 5.0.
> > >
> > > It is now available in source and binary form from the
> Connector/Net
> > > download pages at
> > http://dev.mysql.com/downloads/connector/net/1.0.html
> > > and
> > > mirror sites (note that not all mirror sites may be up to
> > date at this
> >
> > > point
> > > in time - if you can't find this version on some mirror,
> please try
> > again
> > > later or choose another download site.)
> > >
> > > This release corrects a major problem that caused version
> > 1.0.5 to not
> > > function with Mono. While this release has been tested
> > with Mono, our
> >
> > > test
> > > suite doesn't complete successfully on Mono. We have not yet
> > identified
> > > the
> > > problem but it seems to be an issue in the Mono runtime
> > since the test
> >
> > > suite
> > > completes successfully on .NET 1.0, 1.1, and 2.0. We are
> continuing
> > to
> > > examine this issue and expect to have a resolution for 1.0.7.
> > >
> > > This release also includes a substantial change in previous
> > functionality.
> > > In prior versions, connections pulled from a connection pool were
> > "pinged"
> > > to make sure the server was still listening. These
> connections were
> > also
> > > "reset" so that any temporary tables or user variables
> were cleaned
> > out
> > > and
> > > pending transactions rolled back. This had the effect of
> > giving you a
> >
> > > clean
> > > slate for that connection. These operations are important
> > but do take
> >
> > > time.
> > > With this release, we have added two new connection
> string options.
> > cache
> > > server configuration=yes will prevent a connection from updating
> > server
> > > status variables when it comes out of the pool. Reset pooled
> > > connections=no will prevent the connection from being
> reset when it
> > > comes
> > out of the
> > > pool.
> > > This will also prevent the "ping" from being sent to the
> > server. The
> > > effect
> > > of this is that turning on server config caching and turning off
> > > connection reset will cause connection opens from the pool to be
> > _very_ fast but
> > the
> > > pool may give you a dead connection. As always, it is
> important for
> > your
> > > code to be prepared to handle any exceptions that may
> arise from the
> > use
> > > of
> > > this connection. Please see the documentation for these
> > options along
> >
> > > with
> > > synonyms.
> > >
> > > Known Issues
> > > ------------
> > > 1. Packets larger than 16 megabytes still do not
> function correctly
> > over
> > > compressed connections. We are still looking at this issue.
> > >
> > > 2. The problems with shared memory connections in the server have
> > been
> > > corrected and we hope to resume testing of these connections with
> > 1.0.7.
> > >
> > >
> > > ChangeLog
> > > ---------
> > >
> > > 9-27-05 - Version 1.0.6
> > >
> > > Bugs fixed or addressed
> > > -------------------------
> > > Bug #13036 Returns error when field names contain any of the
> > following
> > > chars %<>()/ etc [fixed]
> > > Bug #12835 1.0.5 won't install on system with 1.0.4 installed
> > [fixed]
> > > Bug #12978 Fatal Error C# Compilation [fixed]
> > > Bug #13276 Exception on serialize after inserting null value
> > [fixed]
> > > Bug #13345 Connecting from mono 1.1.8 to MySQL 5.0
> using MySQL
> > > Connector/Net 1.0.5
> > >
> > > Other changes
> > > -------------------------
> > > Changed SocketStream and StreamCreator to be
> compatible with Mono
> > > Added options to not reset and reconfigure connections
> > pulled from
> > the
> > > pool
> > > Connections pulled from the pool that are not reset
> are also not
> > pinged
> > >
> > >
> > > --
> > > Reggie Burnett, Software Developer
> > > MySQL AB, www.mysql.com
> > >
> > > Are you MySQL certified? www.mysql.com/certification
> > >
> > >
> > > --
> > > MySQL on .NET Mailing List
> > > For list archives: http://lists.mysql.com/dotnet To unsubscribe:
> > > http://lists.mysql.com/dotnet?unsub=1
> > >
> > >
> >
> >
> >
> > --
> > MySQL on .NET Mailing List
> > For list archives: http://lists.mysql.com/dotnet To unsubscribe:
> > http://lists.mysql.com/dotnet?unsub=1
> >
> >
> > --
> > No virus found in this incoming message.
> > Checked by AVG Anti-Virus.
> > Version: 7.0.344 / Virus Database: 267.11.8/113 - Release Date:
> > 27/09/2005
> >
> >
> > "NOTICE: The information in this electronic mail transmission
> > is intended by
> > CoralTree Systems Ltd for the use of the named individuals or
> > entity to
> > which it is directed and may contain information that is
> > privileged or
> > otherwise confidential. If you have received this electronic mail
> > transmission in error, please delete it from your system
> > without copying or
> > forwarding it, and notify the sender of the error by reply
> > email or by
> > telephone, so that the sender's address records can be corrected."
> >
> >
> > --
> > MySQL on .NET Mailing List
> > For list archives: http://lists.mysql.com/dotnet
> > To unsubscribe:
> > http://lists.mysql.com/dotnet?unsub=1
> >
> >
> >
> >
> > --
> > MySQL on .NET Mailing List
> > For list archives: http://lists.mysql.com/dotnet
> > To unsubscribe:
> > http://lists.mysql.com/dotnet?unsub=1
> >
>
>
> --
> MySQL on .NET Mailing List
> For list archives: http://lists.mysql.com/dotnet
> To unsubscribe:
> http://lists.mysql.com/dotnet?unsub=1
>
>
> --
> No virus found in this incoming message.
> Checked by AVG Anti-Virus.
> Version: 7.0.344 / Virus Database: 267.11.9/117 - Release
> Date: 03/10/2005
>
>
> --
> No virus found in this outgoing message.
> Checked by AVG Anti-Virus.
> Version: 7.0.344 / Virus Database: 267.11.9/117 - Release
> Date: 03/10/2005
>
>
> --
> MySQL on .NET Mailing List
> For list archives: http://lists.mysql.com/dotnet
> To unsubscribe:
> http://lists.mysql.com/dotnet?unsub=1
>
>