<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums - C#, Mono, .Net</title>
        <description>Forum for C#, Mono, .Net</description>
        <link>http://forums.mysql.com/list.php?47</link>
        <lastBuildDate>Sat, 18 May 2013 20:57:23 +0000</lastBuildDate>
        <generator>Phorum 5.2.19</generator>
        <item>
            <guid>http://forums.mysql.com/read.php?47,585362,585362#msg-585362</guid>
            <title>Add Reference Confusion (VSE 2012) (1 reply)</title>
            <link>http://forums.mysql.com/read.php?47,585362,585362#msg-585362</link>
            <description><![CDATA[ I am trying to following an example here <br />
<a href="http://www.dreamincode.net/forums/topic/115753-use-vbnet-to-connect-to-mysql/"  rel="nofollow">http://www.dreamincode.net/forums/topic/115753-use-vbnet-to-connect-to-mysql/</a><br />
to create my first ever VB.Net app which can talk to MySQL.<br />
<br />
I've downloaded and installed the connector. <br />
<br />
The Add Reference on my VSE 2012 looks different than the one in the example (no .NET category!). But in Assemblies:Extensions I find 7! entries named MySqlsomething:  MySql.Data (twice!), MySql.Data.CF, MySql.Data.Entity (twice!), and MySql.Web (twice!). All are identified as Version 6.6.5.0.  Which one(s) do I need to specify?<br />
<br />
Thanks Much,  Bob]]></description>
            <dc:creator>Bob Anonymous</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Fri, 03 May 2013 16:16:39 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,585212,585212#msg-585212</guid>
            <title>MySQL Connector/Net 6.7.2 Beta has been released (no replies)</title>
            <link>http://forums.mysql.com/read.php?47,585212,585212#msg-585212</link>
            <description><![CDATA[ MySQL Connector/Net 6.7.2, a new version of the all-managed .NET driver for MySQL has been released.  This is the first beta release intended to introduce users to the new features in the release.  This release is feature complete, it should be stable enough for users to understand the new features and how we expect them to work.  As is the case with all non-GA releases, it should not be used in any production environment.  It is appropriate for use with MySQL server versions 5.0-5.7.<br />
<br />
It is now available in source and binary form from <a href="http://dev.mysql.com/downloads/connector/net/#downloads"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/#downloads</a> and mirror sites (note that not all mirror sites may be up to date at this point-if you can't find this version on some mirror, please try again later or choose another download site.)<br />
<br />
The 6.7 version of MySQL Connector/Net brings the following new features:<br />
-    WinRT Connector.<br />
-    Load Balancing support.<br />
-    Entity Framework 5.0 support.<br />
-    Memcached support for Innodb Memcached plugin.<br />
-    This version also splits the product in two: from now on, starting version 6.7, Connector/NET will include only the former Connector/NET ADO.NET driver, Entity Framework and ASP.NET providers (Core libraries of MySql.Data, MySql.Data.Entity &amp; MySql.Web). While all the former product Visual Studio integration (Design support, Intellisense, Debugger) will be released in a separated plugin for Visual Studio product.<br />
<br />
<br />
WinRT Connector<br />
-------------------------------------------<br />
The major feature introduced in this Beta. Now you can write MySql data access apps in Windows Runtime (aka Store Apps) using the familiar API of Connector/NET for .NET.<br />
The following features are supported:<br />
- Open a connection using most of the connection string attributes: (database, pooling, user variables, etc)<br />
- Execute queries using MySqlDataReader: it can execute queries and show commands<br />
- Execute non queries: it can execute DML statements: Insert, delete, update<br />
- Change database<br />
- Password expiration<br />
- Basic connection attributes (connector name and operating system only)<br />
- Authentication plugins (mysql native password only)<br />
- Connections pool<br />
- Connection clone<br />
- Connection timeout<br />
- Abort connection<br />
- Ping<br />
<br />
Features not supported in this release:<br />
- Authentication with other protocols than native mysql (specifically sha256 &amp; windows integrated security).<br />
- SSL encryption for connections.<br />
<br />
Known issues:<br />
- Due to indeterministic RT Garbage Collection, is better to explicitely call Close/Dispose on a connection than setting reference to null.<br />
<br />
Other features not planned to be supported:<br />
- MySqlCommandBuilder<br />
- Entity Framework<br />
- ASP.NET Providers.<br />
<br />
<br />
Load Balancing Support<br />
-------------------------------------------<br />
Now you can setup a Replication or Cluster configuration in the backend, and Connector/NET will balance the load of queries among all servers making up the backend topology.<br />
<br />
Entity Framework 5.0<br />
-------------------------------------------<br />
Connector/NET is now compatible with EF 5, including special features of EF 5 like spatial types.<br />
<br />
Memcached<br />
-------------------------------------------<br />
Just setup Innodb memcached plugin and use Connector/NET new APIs to establish a client to MySql 5.6 server's memcached daemon.<br />
<br />
<br />
Enjoy and thanks for the support!]]></description>
            <dc:creator>Fernando Gonzalez Sanchez</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Tue, 30 Apr 2013 19:09:45 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,584958,584958#msg-584958</guid>
            <title>Data Module using MySQL (1 reply)</title>
            <link>http://forums.mysql.com/read.php?47,584958,584958#msg-584958</link>
            <description><![CDATA[ I think I'm re-inventing the wheel. But I do not know which wheel is currently the standard. I am developing an application that uses MySQL as the database server. In this way, this application can be used on multiple computers on the network.<br />
<br />
To use the database throughout the application I thought being smart by writing a class that connects and perform queries but unfortunately more difficult steps are needed in order to make my class work perfectly. The **2** problems I currently have:<br />
<br />
I can only query one query at the time.<br />
---------------------------------------<br />
<br />
For example: The user that start-up the application needs to login. After that is successful, the application sets some variables that can be used throughout the whole application. See the code:<br />
<br />
    profile.gebruikersID   = SQLHook.Results(&quot;SELECT * FROM tblgebruikers WHERE GebruikersNaam = '&quot; &amp; TextGebruikersNaam.Text.Replace(&quot;'&quot;, &quot;''&quot;) &amp; &quot;'&quot;, &quot;GebruikersID&quot;)<br />
    profile.gebruikersNaam = SQLHook.Results(&quot;SELECT * FROM tblgebruikers WHERE GebruikersNaam = '&quot; &amp; TextGebruikersNaam.Text.Replace(&quot;'&quot;, &quot;''&quot;) &amp; &quot;'&quot;, &quot;gebruikersNaam&quot;)<br />
    profile.gebruikersRole = SQLHook.Results(&quot;SELECT * FROM tblgebruikers WHERE GebruikersNaam = '&quot; &amp; TextGebruikersNaam.Text.Replace(&quot;'&quot;, &quot;''&quot;) &amp; &quot;'&quot;, &quot;gebruikersRole&quot;)<br />
<br />
`profile.` is a class that uses get and set. SQLHook is a variable set for the MySQL Class `Dim SQLHook As New MySQL()`<br />
<br />
SQL Injection<br />
-------------<br />
<br />
I think I'm pretty much don't know anything how to protect from injections. I have read an article about [parameterized SQL][1] but I understood a little and I was demotivated because my class is not good enough.<br />
<br />
My MySQL Class:<br />
---------------<br />
<br />
    Imports MySql.Data.MySqlClient<br />
    <br />
    Public Class MySQL<br />
        Public Function Connect()<br />
            Dim verbinding As MySqlConnection<br />
    <br />
            verbinding = New MySqlConnection()<br />
            verbinding.ConnectionString = &quot;Server=localhost; uid=root; pwd=root; database=test;&quot;<br />
    <br />
            Try<br />
                verbinding.Open()<br />
    <br />
                Return verbinding<br />
            Catch myerror As MySqlException<br />
                verbinding.Close()<br />
                verbinding.Dispose()<br />
    <br />
                Return myerror.Message<br />
            End Try<br />
        End Function<br />
    <br />
        Public Function Datagid_Result(ByVal sql)<br />
            Try<br />
                Dim conn = Connect()<br />
    <br />
                Dim myAdapter As New MySqlDataAdapter<br />
                Dim myData As New DataTable<br />
                Dim myCommand As New MySqlCommand()<br />
    <br />
                myCommand.Connection = conn<br />
                myCommand.CommandText = sql<br />
                myAdapter.SelectCommand = myCommand<br />
    <br />
                myAdapter.Fill(myData)<br />
    <br />
                Return myData<br />
            Catch myerror As MySqlException<br />
                Debug.Print(&quot;De server retourneerde de volgende foutmelding: &quot; &amp; myerror.Message)<br />
    <br />
                Return DBNull.Value<br />
            End Try<br />
        End Function<br />
    <br />
        Public Function num_results(ByVal sql)<br />
            Try<br />
                Dim conn = Connect()<br />
    <br />
                Dim myAdapter As New MySqlDataAdapter<br />
                Dim myCommand As New MySqlCommand()<br />
    <br />
                myCommand.Connection = conn<br />
                myCommand.CommandText = sql<br />
                myAdapter.SelectCommand = myCommand<br />
    <br />
                Dim myData As MySqlDataReader<br />
                myData = myCommand.ExecuteReader()<br />
    <br />
                Return myData.GetInt32(0)<br />
    <br />
            Catch myerror As MySqlException<br />
                Debug.Print(&quot;De server retourneerde de volgende foutmelding: &quot; &amp; myerror.Message)<br />
    <br />
                Return 0<br />
            End Try<br />
        End Function<br />
    <br />
        Public Function Counter(ByVal sql)<br />
            Try<br />
                Dim conn = Connect()<br />
                Dim myCommand As New MySqlCommand(sql, conn)<br />
                Dim count = myCommand.ExecuteScalar()<br />
    <br />
                Return count<br />
            Catch myerror As MySqlException<br />
                Debug.Print(&quot;De server retourneerde de volgende foutmelding: &quot; &amp; myerror.Message)<br />
    <br />
                Return 0<br />
            End Try<br />
        End Function<br />
    <br />
        Public Sub Query(ByVal sql)<br />
            Try<br />
                Dim conn = Connect()<br />
                Dim myCommand As New MySqlCommand<br />
    <br />
                myCommand.CommandText = sql<br />
                myCommand.Connection = conn<br />
    <br />
                myCommand.ExecuteNonQuery()<br />
            Catch myerror As MySqlException<br />
                Debug.Print(&quot;De server retourneerde de volgende foutmelding: &quot; &amp; myerror.Message)<br />
    <br />
                Exit Sub<br />
            End Try<br />
        End Sub<br />
    <br />
        Public Function Results(ByVal sql As String, ByVal fieldName As String) As String<br />
            Dim conn As MySqlConnection = Connect()<br />
            Dim myCommand As New MySqlCommand(Sql, conn)<br />
            Dim myData As MySqlDataReader = myCommand.ExecuteReader()<br />
    <br />
            Try<br />
                myData.Read()<br />
    <br />
                Dim fieldValue As Object = myData.Item(fieldName)<br />
    <br />
                myData.Close()<br />
    <br />
                Return fieldValue.ToString<br />
            Catch myerror As MySqlException<br />
                Debug.Print(&quot;De server retourneerde de volgende foutmelding: &quot; &amp; myerror.Message)<br />
    <br />
                myData.Close()<br />
    <br />
                Return &quot;&quot;<br />
            End Try<br />
        End Function<br />
    End Class<br />
<br />
I hope somebody could advise/solve my problems above and suggest something. Thank you. A visual basic beginner.<br />
<br />
  [1]: <a href="http://www.codinghorror.com/blog/2005/04/give-me-parameterized-sql-or-give-me-death.html"  rel="nofollow">http://www.codinghorror.com/blog/2005/04/give-me-parameterized-sql-or-give-me-death.html</a>]]></description>
            <dc:creator>Ricardo Jacobs</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Mon, 29 Apr 2013 19:04:21 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,583822,583822#msg-583822</guid>
            <title>MySQL Connector/Net 6.7.1 Alpha 2 has been released (no replies)</title>
            <link>http://forums.mysql.com/read.php?47,583822,583822#msg-583822</link>
            <description><![CDATA[ MySQL Connector/Net 6.7.1, a new version of the all-managed .NET driver for MySQL has been released.  This is the second of two alpha releases intended to introduce users to the new features in the release.  This release is not feature complete and there are significant limitations but it should be stable enough for users to understand the new features and how we expect them to work.  As is the case with all non-GA releases, it should not be used in any production environment.  It is appropriate for use with MySQL server versions 5.0-5.6<br />
<br />
It is now available in source and binary form from <a href="http://dev.mysql.com/downloads/connector/net/#downloads"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/#downloads</a> and mirror sites (note that not all mirror sites may be up to date at this point-if you can't find this version on some mirror, please try again later or choose another download site.)<br />
<br />
The 6.7 version of MySQL Connector/Net brings the following new features:<br />
<br />
-    Load Balancing support.<br />
-    Entity Framework 5.0 support.<br />
-    Memcached support for Innodb Memcached plugin.<br />
-    This version also splits the product in two: from now on, starting version 6.7, Connector/NET will include only the former Connector/NET ADO.NET driver, Entity Framework and ASP.NET providers (Core libraries of MySql.Data, MySql.Data.Entity &amp; MySql.Web). While all the former product Visual Studio integration (Design support, Intellisense, Debugger) will be released in a separated plugin for Visual Studio product.<br />
<br />
Load Balancing Support<br />
-------------------------------------------<br />
Now you can setup a Replication or Cluster configuration in the backend, and Connector/NET will balance the load of queries among all servers making up the backend topology.<br />
<br />
Entity Framework 5.0<br />
-------------------------------------------<br />
Connector/NET is now compatible with EF 5, including special features of EF 5 like spatial types.<br />
<br />
Memcached<br />
-------------------------------------------<br />
Just setup Innodb memcached plugin and use Connector/NET new APIs to establish a client to MySql 5.6 server's memcached daemon.<br />
<br />
The following bug fixes are provided in this 6.7.1 release:<br />
- Fix for Bug Assemblies for .net 4.5 are not included in the installation (Oracle Bug #16463655).<br />
- Fix for Bug Geometry Provider Incompatible Exception (Oracle Bug # 16453250).<br />
<br />
<br />
Enjoy and thanks for the support!]]></description>
            <dc:creator>Fernando Gonzalez Sanchez</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Fri, 12 Apr 2013 18:40:01 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,583138,583138#msg-583138</guid>
            <title>Can I embed MySQL (5.6, Community) in a C# app (1 reply)</title>
            <link>http://forums.mysql.com/read.php?47,583138,583138#msg-583138</link>
            <description><![CDATA[ I'm trying to embed MySQL (Community edition) in a C#/Windows app. Is there some straightforward/easy way to do this in 5.6?  I can't tell if this version of MySQL supports being embedded, let alone figure out how to interface to it from C#.  Any info/leads would be appreciated.]]></description>
            <dc:creator>Roy Wilkinson</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Mon, 08 Apr 2013 15:17:50 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,582250,582250#msg-582250</guid>
            <title>Get C# Event when table trigger is up. (1 reply)</title>
            <link>http://forums.mysql.com/read.php?47,582250,582250#msg-582250</link>
            <description><![CDATA[ Hello,<br />
I writing a simple c# application whose aim is to display logs tablet and act in accordance with any new log record entering.<br />
In case of error do A...<br />
In case of warning do B..<br />
and so on.<br />
<br />
Is there a way to get an event in c # when trigger activated in DB?<br />
<br />
Thanks,<br />
Nadav.]]></description>
            <dc:creator>Nadav Wolfin</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Mon, 01 Apr 2013 18:24:40 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,582241,582241#msg-582241</guid>
            <title>MySQL Connector/Net 6.5.6 Maintenance Release has been released (no replies)</title>
            <link>http://forums.mysql.com/read.php?47,582241,582241#msg-582241</link>
            <description><![CDATA[ MySQL Connector/Net 6.5.6, a new maintenance release of our 6.5 series, has been released.  This release is GA quality and is <br />
appropriate for use in production environments.  Please note that 6.6 is our latest driver series and is the recommended product for development. It is now<br />
available in source and binary form from <a href="http://dev.mysql.com/downloads/connector/net/#downloads"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/#downloads</a> and mirror sites (note that not all mirror sites may be up to date at this point-if you can't find this version on some mirror, please try again later or choose another download site.)<br />
<br />
While 6.5.6 is recommended over 6.5.5, for the most feature complete &amp; stable Connector/NET version for production we recommend 6.6.5.<br />
<br />
The 6.5.6 version of MySQL Connector/Net brings the following fixes:<br />
- Fix internal bug &quot;Parser cannot recognize row_count in grammar version 5.6&quot; (id task 326).<br />
- Fixed missing keywords not working as ids (without quoting) in parser: value, status, unknown &amp; some unit tests.<br />
- Fix for Datetime precision doesn't work with code first or model first. (Oracle bug #15972773).<br />
- Fix for Support for current_timestamp as default for datetime with ef for server 5.6 (Oracle bug #15935094).<br />
- Adding support for Geometry type. Unit Tests included. Supporting server 5.1 and further.<br />
- Added support for new connect attributes feature in server 5.6 (Oracle bug #15935112).<br />
- Added protocol support for password expiration (Oracle bug #15935104).<br />
- Added to parser missing &quot;alter user ... password expire&quot;.<br />
- Fix for &quot;Debugger error on stored procedure&quot;, which is actually a parser bug (parser was expecting decimal both precision &amp; scale),<br />
(bug MySql #67975, Oracle bug #16079735).<br />
- Added support for password hashing with appropriate strength for server 5.6 (Oracle bug #15935128).<br />
- Fix for GetSchema returning MySqlException instead of ArgumentException when passing an invalid collection name<br />
(Oracle bug #16271425, MySql bug #67901).<br />
- Fix for EF 4.3 failing when FK identifiers are too long (MySql bug #67285, Oracle bug #16286397).<br />
- Fix for race condition on ConnectionStringBuilder when using multiple threads<br />
(MySql bug #68217, Oracle bug #16310698).<br />
- Fix for stored routines being edited from Server explorer appear as ALTER, which may led<br />
to syntax errors, which may led to Intellisense to stop working (Oracle bug #16357595).<br />
- Fix for Error in Server Explorer when refreshing a table or view (Oracle bug #16363908).<br />
- Fix for Intellisense not available for Views (Oracle bug #16384218).<br />
- Fix for &quot;When saving a new stored procedure, it raises a windows error message&quot;, due to<br />
using definer (Oracle bug #16363828).<br />
- Fix for &quot;The first time a new stored routine is saved, after save, Intellisense doesn't work (Oracle bug #16384238).<br />
- Fix for &quot;Error when saving after changing an existing stored routine name in SQL in the editor&quot; (Oracle bug #16390757).<br />
- Fix for server explorer error opening a remote connection (Oracle bug #16357786).<br />
- Fix for password expiration, new password dialog failed (Oracle bug #16357752).<br />
- Fix for InvalidCastException thrown when executing an stored function (MySql bug #64633, Oracle bug #13864627).<br />
- Fix for Default Command Timeout not applying for EFMySqlCommand (MySql bug #67171, Oracle bug #14825670).<br />
<br />
<br />
The release is available to download at<br />
<a href="http://dev.mysql.com/downloads/connector/net/6.5.html"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/6.5.html</a><br />
<br />
Documentation<br />
You can view current Connector/Net documentation<br />
at <a href="http://dev.mysql.com/doc/refman/5.5/en/connector-net.html"  rel="nofollow">http://dev.mysql.com/doc/refman/5.5/en/connector-net.html</a><br />
<br />
You can find our team blog at <a href="http://blogs.oracle.com/MySQLOnWindows"  rel="nofollow">http://blogs.oracle.com/MySQLOnWindows</a>.<br />
You can also post questions on our forums at <a href="http://forums.mysql.com/"  rel="nofollow">http://forums.mysql.com/</a>.<br />
<br />
Enjoy and thanks for the support!]]></description>
            <dc:creator>Fernando Gonzalez Sanchez</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Sun, 24 Mar 2013 01:13:00 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,582142,582142#msg-582142</guid>
            <title>MySQL Connector/Net 6.7.0 Alpha has been released (no replies)</title>
            <link>http://forums.mysql.com/read.php?47,582142,582142#msg-582142</link>
            <description><![CDATA[ MySQL Connector/Net 6.7.0, a new version of the all-managed .NET driver for MySQL has been released.  This is the first of two alpha releases intended to introduce users to the new features in the release.  This release is not feature complete and there are significant limitations but it should be stable enough for users to understand the new features and how we expect them to work.  As is the case with all non-GA releases, it should not be used in any production environment.  It is appropriate for use with MySQL server versions 5.0-5.6<br />
<br />
It is now available in source and binary form from <a href="http://dev.mysql.com/downloads/connector/net/#downloads"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/#downloads</a> and mirror sites (note that not all mirror sites may be up to date at this point-if you can't find this version on some mirror, please try again later or choose another download site.)<br />
<br />
The 6.7 version of MySQL Connector/Net brings the following new features:<br />
<br />
    Load Balancing support.<br />
    Entity Framework 5.0 support.<br />
    Memcached support for Innodb Memcached plugin.<br />
    This version also splits the product in two: from now on, starting version 6.7, Connector/NET will include only the former Connector/NET ADO.NET driver, Entity Framework and ASP.NET providers (Core libraries of MySql.Data, MySql.Data.Entity &amp; MySql.Web). While all the former product Visual Studio integration (Design support, Intellisense, Debugger) will be released in a separated plugin for Visual Studio product.<br />
<br />
Load Balancing Support<br />
-------------------------------------------<br />
Now you can setup a Replication or Cluster configuration in the backend, and Connector/NET will balance the load of queries among all servers making up the backend topology.<br />
<br />
Entity Framework 5.0<br />
-------------------------------------------<br />
Connector/NET is now compatible with EF 5, including special features of EF 5 like spatial types.<br />
A known issue is that in this release you'll need to use MySql.Data.Entity assembly for .NET 4.0 with EF 5, in the future we will include a version of that assembly for .NET 4.5.<br />
<br />
Memcached<br />
-------------------------------------------<br />
Just setup Innodb memcached plugin and use Connector/NET new APIs to establish a client to MySql 5.6 server's memcached daemon.<br />
<br />
Enjoy and thanks for the support!]]></description>
            <dc:creator>Fernando Gonzalez Sanchez</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Fri, 22 Mar 2013 18:04:09 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,581442,581442#msg-581442</guid>
            <title>MySQL Connection string to Context (3 replies)</title>
            <link>http://forums.mysql.com/read.php?47,581442,581442#msg-581442</link>
            <description><![CDATA[ I am trying to figure out how to pass a MySQL connection string through a datacontext. I keep getting a exception thrown when it gets to the DataContext &quot;login failed at user: root&quot;. I believe it thinks im using SQL Server  and I do not know where I am going wrong. Any guidance would be appreciated. <br />
Its an app the the user plugs in the values to the database and it gets the info to and from the database. <br />
<br />
<br />
//This gets the values the user enters to access the databse and returns the //string to where its needed<br />
<br />
private string MustangConnString()<br />
{<br />
  string connStr = (&quot;persist security info = true;server=&quot; + Server + &quot;;uid=&quot; +      username + &quot;;database=&quot; + Database + &quot;;pwd=&quot; + Password + );<br />
<br />
  MySqlConnection myConnectionString = MySqlConnection(connStr);<br />
  <br />
  myConnectionString.Open();  <br />
<br />
  return myConnectionString.ConnectionString;<br />
}<br />
<br />
//This is where the connection string is needed <br />
private void ect (bool oneanddon)<br />
{<br />
<br />
  MySqlConnection myConnectionString = new MySqlConnection(ConnectionString);<br />
  myConnectionString.Open();<br />
  <br />
  //I am getting the error here, Like I said I believe it thinks im trying to log       //into an SQL servr database and I don't know how to solve this.<br />
  using (var MessageConn = new DataContext(myConnectionString.ConnectionString))<br />
  {<br />
     var cos = MustangConn.COS.ToList();<br />
  }<br />
<br />
}]]></description>
            <dc:creator>Samantha Martin</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Sat, 27 Apr 2013 04:46:08 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,579969,579969#msg-579969</guid>
            <title>MySQL stops responding due to many connections (1 reply)</title>
            <link>http://forums.mysql.com/read.php?47,579969,579969#msg-579969</link>
            <description><![CDATA[ Hi All,<br />
<br />
I have a client-server application in C#.NET with MySQL as database. After some time, there will be many processes in the MySQL processlist and it stops working. Is there any way to remove the old processes on regular intervals? Can anyone suggest me other best practices to improve the performance of the system?<br />
<br />
Thank you very much in advance<br />
Jo]]></description>
            <dc:creator>Jose Joseph</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Mon, 25 Feb 2013 22:40:07 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,578797,578797#msg-578797</guid>
            <title>On Connector/NET dropping support for VS2005 (Poll) (no replies)</title>
            <link>http://forums.mysql.com/read.php?47,578797,578797#msg-578797</link>
            <description><![CDATA[ Hi,<br />
<br />
As you may know Connector/NET 6.4.x is that last version of Connector/NET supporting Visual Studio 2005.<br />
Currently we don't have plans to add support for Visual Studio 2005 in 6.5.x or 6.6.x (both of which support VS2008, VS2010 &amp; VS2012).<br />
<br />
But we want to hear feedback from the community... is there still interest in VS2005?]]></description>
            <dc:creator>Fernando Gonzalez Sanchez</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Fri, 08 Feb 2013 22:18:49 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,578546,578546#msg-578546</guid>
            <title>MySQL Connector/Net 6.6.5 MR has been released (no replies)</title>
            <link>http://forums.mysql.com/read.php?47,578546,578546#msg-578546</link>
            <description><![CDATA[ MySQL Connector/Net 6.6.5, a new version of the all-managed .NET driver for MySQL has been released.  This is a maintenance release for 6.6.x.<br />
This release is feature complete. It is recommended for use in production environments.<br />
It is appropriate for use with MySQL server versions 5.0-5.6<br />
<br />
It is now available in source and binary form from <a href="http://dev.mysql.com/downloads/connector/net/#downloads"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/#downloads</a> and mirror sites (note that not all mirror sites may be up to date at this point-if you can't find this version on some mirror, please try again later or choose another download site.)<br />
<br />
The 6.6.5 version of MySQL Connector/Net brings full support for MySql 5.6, including the following new features:<br />
- Fix for Support for current_timestamp as default for datetime with ef for server 5.6 (Oracle bug #15935094).<br />
- Added support for new connect attributes feature in server 5.6 (Oracle bug #15935112).<br />
- Added protocol support for password expiration (Oracle bug #15935104).<br />
- Added support for password hashing with appropriate strength for server 5.6 (Oracle bug #15935128).<br />
<br />
As well the following bug fixes:<br />
- Fix for bug Keyword not supported. Parameter name: AttachDbFilename (Mysql bug #66880, Oracle bug #14733472).<br />
- Added support to MySql script file to retrieve data when using &quot;SHOW&quot; statements.<br />
- Fix for Package Load Failure in Visual Studio 2005 (MySql bug #63073, Oracle bug #13491674).<br />
- Fix for bug &quot;Unable to connect using IPv6 connections&quot; (MySQL bug #67253, Oracle bug #14835718).<br />
- Added auto-generated values for Guid identity columns (MySql bug #67450, Oracle bug #15834176).<br />
- Fix for method FirstOrDefault not supported in some LINQ to Entities queries (MySql bug #67377, Oracle bug #15856964).<br />
- Fix internal bug &quot;Parser cannot recognize row_count in grammar version 5.6&quot; (id task 326).<br />
- Fixed missing keywords not working as ids (wihout quoting) in parser: value, status, unknown&amp;   some unit tests from Arnaud feedback.<br />
- Fix for Datetime precision doesn't work with code first or model first. (Oracle bug #15972773).<br />
- Adding support for Geometry type. Unit Tests included. Supporting server 5.1 and further.<br />
- Added to parser missing &quot;alter user ... password expire&quot;.<br />
- Fix for &quot;Debugger error on stored procedure&quot;, which is actually a parser bug (parser was expecting decimal both precision&amp;   scale), (bug MySql #67975, Oracle bug #16079735).<br />
- Added a more friendly message for error when trying to authenticate with old password.<br />
<br />
<br />
The release is available to download<br />
at <a href="http://dev.mysql.com/downloads/connector/net/6.6.html"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/6.6.html</a><br />
<br />
Documentation<br />
-------------------------------------<br />
You can view current Connector/Net documentation<br />
at <a href="http://dev.mysql.com/doc/refman/5.5/en/connector-net.html"  rel="nofollow">http://dev.mysql.com/doc/refman/5.5/en/connector-net.html</a><br />
<br />
<br />
You can find our team blog at <a href="http://blogs.oracle.com/MySQLOnWindows"  rel="nofollow">http://blogs.oracle.com/MySQLOnWindows</a>.<br />
You can also post questions on our forums at <a href="http://forums.mysql.com/"  rel="nofollow">http://forums.mysql.com/</a>.<br />
<br />
Enjoy and thanks for the support!]]></description>
            <dc:creator>Fernando Gonzalez Sanchez</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Wed, 06 Feb 2013 00:39:05 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,577659,577659#msg-577659</guid>
            <title>VB.NET, MySQL and Scripts (1 reply)</title>
            <link>http://forums.mysql.com/read.php?47,577659,577659#msg-577659</link>
            <description><![CDATA[ hI,<br />
<br />
   I'm trying to insert a lots of rows from my program, but I can't do it one by one, because is very slow.<br />
<br />
   I tried to concatenate the inserts but doesn't work, It works if I do in the MySQL Workbench. but not sending the same script from the source code.<br />
<br />
   I'm using ADODB connection in Visual Basic 2010.<br />
    <br />
   Someone know how to do that?<br />
<br />
<br />
Thanks.]]></description>
            <dc:creator>Nivaldo Ribeiro</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Tue, 22 Jan 2013 16:31:56 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,577473,577473#msg-577473</guid>
            <title>A request to send or receive data was disallowed because the socket is not connected (2 replies)</title>
            <link>http://forums.mysql.com/read.php?47,577473,577473#msg-577473</link>
            <description><![CDATA[ Hello,<br />
<br />
I get the folowing error when attempting from a local computer (w7 64bit), .net application to connect to a mySql database on a server.<br />
<br />
&quot; A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied. &quot;<br />
<br />
I am not having this error on any other OS, including w8 but just with w7 64bit.<br />
<br />
Local computer firewall is off, antivirus is temporary deactivated, looks like there is nothing blocking the connection.<br />
<br />
Some other forum discussions mention it as a threading problem. But this application does not make use of multi threading.<br />
<br />
<br />
Any ideas would be deepply appreciated.<br />
<br />
Regards.]]></description>
            <dc:creator>Zed Lands</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Mon, 21 Jan 2013 23:04:53 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,576264,576264#msg-576264</guid>
            <title>C# SQL Select using where as variable (4 replies)</title>
            <link>http://forums.mysql.com/read.php?47,576264,576264#msg-576264</link>
            <description><![CDATA[ Hi All,<br />
<br />
I'm new to working with SQL and I'm not writing this select statement properly because it's caught as an Exception.<br />
<br />
       string commandText = &quot;select weight&quot; +<br />
              &quot;from inv&quot; +<br />
              &quot;where item_num = @inumber&quot;;<br />
            <br />
       cmd = connection.CreateCommand();<br />
       cmd.CommandText = commandText;<br />
       cmd.Parameters.AddWithValue(&quot;@inumber&quot;, txt_item1.Text);<br />
       try<br />
       {<br />
              connection.Open();<br />
              MySqlDataReader rdr = cmd.ExecuteReader();<br />
              while (rdr.Read())<br />
              {<br />
                  MessageBox.Show(rdr[&quot;weight&quot;].ToString());<br />
              }<br />
              rdr.Close();<br />
        }<br />
        catch (MySqlException ex)<br />
        {<br />
             MessageBox.Show(ex.Message);<br />
        }<br />
        finally<br />
        {<br />
            if (connection.State == ConnectionState.Open)<br />
            {<br />
                    connection.Close();<br />
            }<br />
        }<br />
<br />
This is not the end purpose of the db read but a way of testing my syntax and progress.]]></description>
            <dc:creator>Ajay Baldeo</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Wed, 19 Dec 2012 23:49:25 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,575183,575183#msg-575183</guid>
            <title>MySQL Connector/Net 6.5.5 Maintenance Release has been released (no replies)</title>
            <link>http://forums.mysql.com/read.php?47,575183,575183#msg-575183</link>
            <description><![CDATA[ MySQL Connector/Net 6.5.5, a new maintenance release of our 6.5 series, has been released.  This release is GA quality and is appropriate for use in production environments.  Please note that 6.6 is our latest driver series and is the recommended product for development. It is now available in source and binary form from<br />
<a href="http://dev.mysql.com/downloads/connector/net/#downloads"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/#downloads</a> and mirror sites<br />
(note that not all mirror sites may be up to date at this point-if you<br />
can't find this version on some mirror, please try again later or choose<br />
another download site.)<br />
<br />
The 6.5.5 version of MySQL Connector/Net brings the following fixes:<br />
- Fix for ArgumentNull exception when using Take().Count() in a LINQ to Entities query (bug MySql #64749, Oracle bug #13913047).<br />
- Fix for type varchar changed to bit when saving in Table Designer (Oracle bug #13916560).<br />
- Fix for error when trying to change the name of an Index on the Indexes/Keys editor; along with this fix now users can change the Index type of a new Index which could not be done<br />
  in previous versions, and when changing the Index name the change is reflected on the list view at the left side of the Index/Keys editor (Oracle bug #13613801).<br />
- Fix for stored procedure call using only its name with EF code first (MySql bug #64999, Oracle bug #14008699).<br />
- Fix for List.Contains generates a bunch of ORs instead of more efficient IN clause in<br />
  LINQ to Entities (Oracle bug #14016344, MySql bug #64934).<br />
- Fix for performance issue in generated EF query: .NET StartsWith/Contains/EndsWith produces MySql's locate instead of Like (MySql bug #64935, Oracle bug #14009363).<br />
- Fix for script generated for code first contains wrong alter table and wrong declaration for byte[] (MySql bug #64216, Oracle bug #13900091).<br />
- Fix and code contribution for bug Timed out sessions are removed without notification which allow to enable the Expired CallBack when Session Provider times out any session (bug MySql #62266 Oracle bug # 13354935)<br />
- Fix for Exception thrown when using cascade delete in an EDM Model-First in Entity Framework (Oracle bug #14008752, MySql bug #64779).<br />
- Fix for Session locking issue with MySqlSessionStateStore (MySql bug #63997, Oracble bug #13733054).<br />
- Fixed deleting a user profile using Profile provider (MySQL bug #64470, Oracle bug #13790123)<br />
- Fix for bug Cannot Create an Entity with a Key of Type String (MySQL bug #65289, Oracle bug #14540202). This fix checks if the type has a FixedLength facet set in order to create a char otherwise should create varchar, mediumtext or longtext types when using a String CLR type in Code First or Model First also tested in Database First. Unit tests added for Code First and ProviderManifest.<br />
- Fix for bug &quot;CacheServerProperties can cause 'Packet too large' error&quot;. The issue was due to a missing reading of Max_allowed_packet server property when CacheServerProperties is in true, since the value was read only in the first connection but the following pooled connections had a wrong value causing a Packet too large error. Including also a unit test for this scenario. All unit test passed. MySQL Bug #66578 Orabug #14593547.<br />
- Fix for handling unnamed parameter in MySQLCommand. This fix allows the mysqlcommand to handle parameters without requiring naming (e.g. INSERT INTO Test (id,name) VALUES (?, ?) ) (MySQL Bug #66060, Oracle bug #14499549).<br />
- Fixed inheritance on Entity Framework Code First scenarios. Discriminator column is created using its correct type as varchar(128) (MySql bug #63920 and Oracle bug #13582335).<br />
- Fixed &quot;Trying to customize column precision in Code First does not work&quot; (MySql bug #65001, Oracle bug #14469048).<br />
- Fixed bug ASP.NET Membership database fails on MySql database UTF32 (MySQL bug #65144, Oracle bug #14495292).<br />
- Fix for MySqlCommand.LastInsertedId holding only 32 bit values (MySql bug #65452, Oracle bug #14171960) by changing<br />
  several internal declaration of lastinsertid from int to long.<br />
- Fixed &quot;Decimal type should have digits at right of decimal point&quot;, now default is 2, but user's changes in<br />
  EDM designer are recognized (MySql bug #65127, Oracle bug #14474342).<br />
- Fix for NullReferenceException when saving an uninitialized row in Entity Framework (MySql bug #66066, Oracle bug #14479715).<br />
- Fix for error when calling RoleProvider.RemoveUserFromRole(): causes an exception due to a wrong table being used (MySql bug #65805, Oracle bug #14405338).<br />
- Fix for &quot;Memory Leak on MySql.Data.MySqlClient.MySqlCommand&quot;, too many MemoryStream's instances created (MySql bug #65696, Oracle bug #14468204).<br />
- Added ANTLR attribution notice (Oracle bug #14379162).<br />
- Fixed Entity Framework + mysql connector/net in partial trust throws exceptions (MySql bug #65036, Oracle bug #14668820).<br />
- Added support in Parser for Datetime and Time types with precision when using Server 5.6 (No bug Number).<br />
- Small improvement on MySqlPoolManager CleanIdleConnections for better mysqlpoolmanager idlecleanuptimer at startup (MySql bug #66472 and Oracle bug #14652624).<br />
- Fix for bug TIMESTAMP values are mistakenly represented as DateTime with Kind = Local (Mysql bug #66964, Oracle bug #14740705).<br />
- Fix for bug Keyword not supported. Parameter name: AttachDbFilename (Mysql bug #66880, Oracle bug #14733472).<br />
- Added support to MySql script file to retrieve data when using &quot;SHOW&quot; statements.<br />
- Fix for Package Load Failure in Visual Studio 2005 (MySql bug #63073, Oracle bug #13491674).<br />
- Fix for bug &quot;Unable to connect using IPv6 connections&quot; (MySQL bug #67253, Oracle bug #14835718).<br />
- Added auto-generated values for Guid identity columns (MySql bug #67450, Oracle bug #15834176).<br />
- Fix for method FirstOrDefault not supported in some LINQ to Entities queries (MySql bug #67377, Oracle bug #15856964).<br />
<br />
The release is available to download at<br />
<a href="http://dev.mysql.com/downloads/connector/net/6.5.html"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/6.5.html</a><br />
<br />
Documentation<br />
-------------------------------------<br />
You can view current Connector/Net documentation<br />
at <a href="http://dev.mysql.com/doc/refman/5.5/en/connector-net.html"  rel="nofollow">http://dev.mysql.com/doc/refman/5.5/en/connector-net.html</a><br />
<br />
You can find our team blog at <a href="http://blogs.oracle.com/MySQLOnWindows"  rel="nofollow">http://blogs.oracle.com/MySQLOnWindows</a>.<br />
You can also post questions on our forums at <a href="http://forums.mysql.com/"  rel="nofollow">http://forums.mysql.com/</a>.<br />
<br />
Enjoy and thanks for the support!]]></description>
            <dc:creator>Fernando Gonzalez Sanchez</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Mon, 03 Dec 2012 19:42:43 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,574692,574692#msg-574692</guid>
            <title>MySQL Connector/Net 6.4.6 Maintenance Release has been released (no replies)</title>
            <link>http://forums.mysql.com/read.php?47,574692,574692#msg-574692</link>
            <description><![CDATA[ MySQL Connector/Net 6.4.6, a new version of the all-managed .NET driver<br />
for MySQL has been released.  This is a maintenance release and is recommended for use in production environments.<br />
It is appropriate for use with MySQL server versions 5.0-5.6.<br />
This is intended to be the final release for Connector/NET 6.4.<br />
<br />
It is now available in source and binary form from<br />
<a href="http://dev.mysql.com/downloads/connector/net/#downloads"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/#downloads</a> and mirror sites<br />
(note that not all mirror sites may be up to date at this point-if you<br />
can't find this version on some mirror, please try again later or choose<br />
another download site.)<br />
<br />
The 6.4.6 version of MySQL Connector/Net brings the following fixes:<br />
- Fix for List.Contains generates a bunch of ORs instead of more efficient IN clause in<br />
  LINQ to Entities (Oracle bug #14016344, MySql bug #64934).<br />
- Fix for error when trying to change the name of an Index on the Indexes/Keys editor; along with this fix now users can change the Index type of a new Index which could not be done<br />
  in previous versions, and when changing the Index name the change is reflected on the list view at the left side of the Index/Keys editor (Oracle bug #13613801).<br />
- Fix for stored procedure call using only its name with EF code first (MySql bug #64999, Oracle bug #14008699).<br />
- Fix for performance issue in generated EF query: .NET StartsWith/Contains/EndsWith produces MySql's locate instead of Like (MySql bug #64935, Oracle bug #14009363).<br />
- Fix for script generated for code first contains wrong alter table and wrong declaration for byte[] (MySql bug #64216, Oracle bug #13900091).<br />
- Fix for Exception thrown when using cascade delete in an EDM Model-First in Entity Framework (Oracle bug #14008752, MySql bug #64779).<br />
- Fix for Session locking issue with MySqlSessionStateStore (MySql bug #63997, Oracble bug #13733054).<br />
- Fixed deleting a user profile using Profile provider (MySQL bug #64409, Oracle bug #13790123).<br />
- Fix for bug Cannot Create an Entity with a Key of Type String (MySQL bug #65289, Oracle bug #14540202). This fix checks if the type has a FixedLength facet set in order to create a char otherwise should create varchar, mediumtext or longtext types when using a String CLR type in Code First or Model First also tested in Database First. Unit tests added for Code First and ProviderManifest.<br />
- Fix for bug &quot;CacheServerProperties can cause 'Packet too large' error&quot; (MySQL Bug #66578 Orabug #14593547).<br />
- Fix for handling unnamed parameter in MySQLCommand. This fix allows the mysqlcommand to handle parameters without requiring naming (e.g. INSERT INTO Test (id,name) VALUES (?, ?) ) (MySQL Bug #66060, Oracle bug #14499549).<br />
- Fixed inheritance on Entity Framework Code First scenarios. Discriminator column is created using its correct type as varchar(128) (MySql bug #63920 and Oracle bug #13582335).<br />
- Fixed &quot;Trying to customize column precision in Code First does not work&quot; (MySql bug #65001, Oracle bug #14469048).<br />
- Fixed bug ASP.NET Membership database fails on MySql database UTF32 (MySQL bug #65144, Oracle bug #14495292).<br />
- Fix for MySqlCommand.LastInsertedId holding only 32 bit values (MySql bug #65452, Oracle bug #14171960) by changing<br />
  several internal declaration of lastinsertid from int to long.<br />
- Fixed &quot;Decimal type should have digits at right of decimal point&quot;, now default is 2, but user's changes in<br />
  EDM designer are recognized (MySql bug #65127, Oracle bug #14474342).<br />
- Fix for NullReferenceException when saving an uninitialized row in Entity Framework (MySql bug #66066, Oracle bug #14479715).<br />
- Fix for error when calling RoleProvider.RemoveUserFromRole(): causes an exception due to a wrong table being used (MySql bug #65805, Oracle bug #14405338).<br />
- Fix for &quot;Memory Leak on MySql.Data.MySqlClient.MySqlCommand&quot;, too many MemoryStream's instances created (MySql bug #65696, Oracle bug #14468204).<br />
- Small improvement on MySqlPoolManager CleanIdleConnections for better mysqlpoolmanager idlecleanuptimer at startup (MySql bug #66472 and Oracle bug #14652624).<br />
- Fix for bug TIMESTAMP values are mistakenly represented as DateTime with Kind = Local (Mysql bug #66964, Oracle bug #14740705).<br />
- Fix for bug Keyword not supported. Parameter name: AttachDbFilename (Mysql bug #66880, Oracle bug #14733472).<br />
- Added support to MySql script file to retrieve data when using &quot;SHOW&quot; statements.<br />
- Fix for Package Load Failure in Visual Studio 2005 (MySql bug #63073, Oracle bug #13491674).<br />
- Fix for bug &quot;Unable to connect using IPv6 connections&quot; (MySQL bug #67253, Oracle bug #14835718).<br />
- Added auto-generated values for Guid identity columns (MySql bug #67450, Oracle bug #15834176).<br />
- Fix for method FirstOrDefault not supported in some LINQ to Entities queries (MySql bug #67377, Oracle bug #15856964).<br />
<br />
The release is available to download at <a href="http://dev.mysql.com/downloads/connector/net/6.4.html"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/6.4.html</a><br />
<br />
Documentation<br />
-------------------------------------<br />
You can view current Connector/Net documentation<br />
at <a href="http://dev.mysql.com/doc/refman/5.5/en/connector-net.html"  rel="nofollow">http://dev.mysql.com/doc/refman/5.5/en/connector-net.html</a><br />
<br />
You can find our team blog at <a href="http://blogs.oracle.com/MySQLOnWindows"  rel="nofollow">http://blogs.oracle.com/MySQLOnWindows</a>.<br />
You can also post questions on our forums at <a href="http://forums.mysql.com/"  rel="nofollow">http://forums.mysql.com/</a>.<br />
<br />
Enjoy and thanks for the support!]]></description>
            <dc:creator>Fernando Gonzalez Sanchez</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Mon, 26 Nov 2012 23:27:23 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,574481,574481#msg-574481</guid>
            <title>MySQL Connector/Net With SSL (1 reply)</title>
            <link>http://forums.mysql.com/read.php?47,574481,574481#msg-574481</link>
            <description><![CDATA[ Hello<br />
<br />
i use the MySQL Connector/Net compact framework<br />
and have for sometime now but today a reconfigured my mysql server<br />
and started using SSL.<br />
<br />
On the Pc application everything works fine sens i use the Mysql.Data.dll<br />
But on the phone i use Mysql.Data.CF.dll and that one doesnt have support for SSL.<br />
<br />
is there an other way to get an compact solution for the phone and use ssl?]]></description>
            <dc:creator>Kristofer Brigelius</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Mon, 26 Nov 2012 18:02:48 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,573409,573409#msg-573409</guid>
            <title>MySQL Connector/Net 6.6 GA has been released (no replies)</title>
            <link>http://forums.mysql.com/read.php?47,573409,573409#msg-573409</link>
            <description><![CDATA[ MySQL Connector/Net 6.6, a new version of the all-managed .NET driver<br />
for MySQL has been released. This is the GA intended to introduce users to the new features in the release. This release is feature complete. It is recommended for use in production environments.<br />
It is appropriate for use with MySQL server versions 5.0-5.6<br />
<br />
It is now available in source and binary form from<br />
<a href="http://dev.mysql.com/downloads/connector/net/#downloads"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/#downloads</a> and mirror sites<br />
(note that not all mirror sites may be up to date at this point-if you<br />
can't find this version on some mirror, please try again later or choose<br />
another download site.)<br />
<br />
The 6.6 version of MySQL Connector/Net brings the following new features:<br />
<br />
  * Stored routine debugging<br />
  * Entity Framework 4.3 Code First support<br />
  * Pluggable authentication (now third parties can plug new<br />
authentications mechanisms into the driver).<br />
  * Full Visual Studio 2012 support: everything from Server Explorer to<br />
Intellisense&amp;   the Stored Routine debugger.<br />
<br />
<br />
The release is available to download at<a href="http://dev.mysql.com/downloads/connector/net/6.6.html"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/6.6.html</a><br />
<br />
Documentation<br />
-------------------------------------<br />
You can view current Connector/Net documentation<br />
at <a href="http://dev.mysql.com/doc/refman/5.5/en/connector-net.html"  rel="nofollow">http://dev.mysql.com/doc/refman/5.5/en/connector-net.html</a><br />
For specific topics:<br />
Stored Routine Debugger:<a href="http://dev.mysql.com/doc/refman/5.5/en/connector-net-visual-studio-debugger.html"  rel="nofollow">http://dev.mysql.com/doc/refman/5.5/en/connector-net-visual-studio-debugger.html</a><br />
Authentication plugin:<a href="http://dev.mysql.com/doc/refman/5.5/en/connector-net-programming-authentication-user-plugin.html"  rel="nofollow">http://dev.mysql.com/doc/refman/5.5/en/connector-net-programming-authentication-user-plugin.html</a><br />
<br />
You can find our team blog at <a href="http://blogs.oracle.com/MySQLOnWindows"  rel="nofollow">http://blogs.oracle.com/MySQLOnWindows</a>.<br />
You can also post questions on our forums at <a href="http://forums.mysql.com/"  rel="nofollow">http://forums.mysql.com/</a>.<br />
<br />
Enjoy and thanks for the support!]]></description>
            <dc:creator>Fernando Gonzalez Sanchez</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Fri, 09 Nov 2012 22:45:26 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,572995,572995#msg-572995</guid>
            <title>Creating Functions and Procedures from the program (8 replies)</title>
            <link>http://forums.mysql.com/read.php?47,572995,572995#msg-572995</link>
            <description><![CDATA[ Dear all, <br />
<br />
Thank you very much for this useful forum. I have problem in my program. <br />
Actually, I am programming using visual studio with MySQL. I have included the create database and tables in the code of the program. The problem is that I cannot include the code to create the functions and procedures in the program. I have even tried to use the delimiter but unfortunately it does not work too. Can you please help?]]></description>
            <dc:creator>Hussain AlObaidan</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Tue, 27 Nov 2012 12:47:09 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,572202,572202#msg-572202</guid>
            <title>Blog entries on how to use Entity Framework 4.3 (no replies)</title>
            <link>http://forums.mysql.com/read.php?47,572202,572202#msg-572202</link>
            <description><![CDATA[ Hi,<br />
<br />
These couple of blog entries were made by Gaby, the developer in charge of adding EF 4.3 support in Connector/NET:<br />
<br />
Posts in our blog: <br />
<br />
Entity Framework 4.3.1 Code based Migrations and Connector/Net 6.6 <br />
<a href="https://blogs.oracle.com/MySqlOnWindows/entry/entity_framework_4_3_1"  rel="nofollow">https://blogs.oracle.com/MySqlOnWindows/entry/entity_framework_4_3_1</a> <br />
<br />
<br />
<br />
Upgrading to Code Based Migrations EF 4.3.1 with Connector/Net 6.6 <br />
<a href="https://blogs.oracle.com/MySqlOnWindows/entry/upgrading_to_code_first_migrations"  rel="nofollow">https://blogs.oracle.com/MySqlOnWindows/entry/upgrading_to_code_first_migrations</a>]]></description>
            <dc:creator>Fernando Gonzalez Sanchez</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Fri, 26 Oct 2012 15:18:46 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,572132,572132#msg-572132</guid>
            <title>SQL injection prevention in vb.net (3 replies)</title>
            <link>http://forums.mysql.com/read.php?47,572132,572132#msg-572132</link>
            <description><![CDATA[ I am trying to prevent sql injection in my vb.net application and was wondering what the best approach for this would be. I was looking at making my statement parameterized but could not find a function for it in the MySql.Data.MySqlClient import. Is there a way to do this with the import or should I go about trying a different method?  <br />
<br />
Thank you!<br />
<br />
Sean]]></description>
            <dc:creator>Sean Kelly</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Fri, 26 Oct 2012 20:51:03 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,571960,571960#msg-571960</guid>
            <title>trying to use MySql.Data.MySqlClient on aspx page (2 replies)</title>
            <link>http://forums.mysql.com/read.php?47,571960,571960#msg-571960</link>
            <description><![CDATA[ I've got a MySQL database running on my laptop and I want to connect to it via some C# scripting.<br />
<br />
I have an aspx page that has this at the top:<br />
<br />
<pre class="bbcode">
&lt;%@ Page Language=&quot;C#&quot; %&gt;

&lt;%@ Import Namespace=&quot;System.Data&quot; %&gt;
&lt;%@ Import Namespace=&quot;MySql.Data.MySqlClient&quot; %&gt;

&lt;html&gt;

&lt;script runat=&quot;server&quot;&gt;

void Page_Load(object sender, System.EventArgs e)
{
	MySql.Data.MySqlClient.MySqlConnection con = new MySql.Data.MySqlClient.MySqlConnection();
}

&lt;/script&gt;</pre>
<br />
But I get an error when I try to open this page:<br />
<br />
<pre class="bbcode">
Compiler Error Message: CS0246: The type or namespace name 'MySql' could not be found (are you missing a using directive or an assembly reference?)

Source Error:

 

Line 2:  
Line 3:  &lt;%@ Import Namespace=&quot;System.Data&quot; %&gt;
Line 4:  &lt;%@ Import Namespace=&quot;MySql.Data.MySqlClient&quot; %&gt;
Line 5:  
Line 6:  &lt;html&gt;</pre>
<br />
I'm assuming that if I have MySQL running on my machine, I have the MySql.Data.MySqlClient library. If so, I can I get my aspx page to access it. If not, how do I get it (and then use it)?]]></description>
            <dc:creator>Gibran Shah</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Fri, 26 Oct 2012 04:17:28 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,571901,571901#msg-571901</guid>
            <title>Convert sql statement to mysql statement (1 reply)</title>
            <link>http://forums.mysql.com/read.php?47,571901,571901#msg-571901</link>
            <description><![CDATA[ select * from dbo.T_Recipients where Company_Name = 'ACSA' and User_Name = 'Arend' and Full_Name like '%A%']]></description>
            <dc:creator>Divan Du Piesanie</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Tue, 23 Oct 2012 15:45:00 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,571576,571576#msg-571576</guid>
            <title>MySQL Connector/Net 6.6.4 RC1 has been released (no replies)</title>
            <link>http://forums.mysql.com/read.php?47,571576,571576#msg-571576</link>
            <description><![CDATA[ MySQL Connector/Net 6.6.4, a new version of the all-managed .NET driver<br />
for MySQL has been released.  This is the Release Candidate<br />
intended to introduce users to the new features in the release.  This<br />
release is feature complete it should be stable enough for users to<br />
understand the new features and how we expect them to work.  As is the<br />
case with all non-GA releases, it should not be used in any production<br />
environment.  It is appropriate for use with MySQL server versions 5.0-5.6<br />
<br />
It is now available in source and binary form from<br />
<a href="http://dev.mysql.com/downloads/connector/net/#downloads"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/#downloads</a> and mirror sites<br />
(note that not all mirror sites may be up to date at this point-if you<br />
can't find this version on some mirror, please try again later or choose<br />
another download site.)<br />
<br />
The 6.6 version of MySQL Connector/Net brings the following new features:<br />
<br />
  * Stored routine debugging<br />
  * Entity Framework 4.3 Code First support<br />
  * Pluggable authentication (now third parties can plug new<br />
authentications mechanisms into the driver).<br />
  * Full Visual Studio 2012 support: everything from Server Explorer to<br />
Intellisense&amp;  the Stored Routine debugger.<br />
<br />
<br />
The following specific fixes are addressed in this version:<br />
- Fixed Entity Framework + mysql connector/net in partial trust throws exceptions (MySql bug #65036, Oracle bug #14668820).<br />
- Added support in Parser for Datetime and Time types with precision when using Server 5.6 (No bug Number).<br />
- Fix for bug TIMESTAMP values are mistakenly represented as DateTime with Kind = Local (Mysql bug #66964, Oracle bug #14740705).<br />
<br />
The release is available to download at<a href="http://dev.mysql.com/downloads/connector/net/6.6.html"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/6.6.html</a><br />
<br />
Documentation<br />
-------------------------------------<br />
You can view current Connector/Net documentation<br />
at <a href="http://dev.mysql.com/doc/refman/5.5/en/connector-net.html"  rel="nofollow">http://dev.mysql.com/doc/refman/5.5/en/connector-net.html</a><br />
For specific topics:<br />
Stored Routine Debugger:<a href="http://dev.mysql.com/doc/refman/5.5/en/connector-net-visual-studio-debugger.html"  rel="nofollow">http://dev.mysql.com/doc/refman/5.5/en/connector-net-visual-studio-debugger.html</a><br />
Authentication plugin:<a href="http://dev.mysql.com/doc/refman/5.5/en/connector-net-programming-authentication-user-plugin.html"  rel="nofollow">http://dev.mysql.com/doc/refman/5.5/en/connector-net-programming-authentication-user-plugin.html</a><br />
<br />
You can find our team blog at <a href="http://blogs.oracle.com/MySQLOnWindows"  rel="nofollow">http://blogs.oracle.com/MySQLOnWindows</a>.<br />
You can also post questions on our forums at <a href="http://forums.mysql.com/"  rel="nofollow">http://forums.mysql.com/</a>.<br />
<br />
Enjoy and thanks for the support!]]></description>
            <dc:creator>Fernando Gonzalez Sanchez</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Fri, 19 Oct 2012 16:33:43 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,570240,570240#msg-570240</guid>
            <title>Create bool/tinyint(1) in Select of Procedure for DataViewCheckboxColumn in C#!? (1 reply)</title>
            <link>http://forums.mysql.com/read.php?47,570240,570240#msg-570240</link>
            <description><![CDATA[ Hello<br />
<br />
I need to generated a column as bool / tinyint(1) in a select,<br />
so the column will be displayed in my datagrid as checkbox.<br />
<br />
I manage not to generate such a data type.<br />
Is there a solution?<br />
<br />
As an example:<br />
<br />
CREATE  PROCEDURE `myTest`()<br />
BEGIN<br />
<br />
Select <br />
	PK, FK .....<br />
	(case when PK_xyz is null then 1 else 0 end) as IsNew, -- Here bool / tinyint(1) needed<br />
from TableXy<br />
  left join xyz ....<br />
;<br />
END<br />
<br />
<br />
I have try different variants with Cast, Convert, bit ... but not brought the desired success.<br />
<br />
Is there a solution to the problem?<br />
<br />
Thank you an greetings<br />
Christian]]></description>
            <dc:creator>Christian Leder</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Tue, 23 Oct 2012 23:29:59 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,569779,569779#msg-569779</guid>
            <title>MySQL Connector/Net 6.6.3 Beta 2 has been released (1 reply)</title>
            <link>http://forums.mysql.com/read.php?47,569779,569779#msg-569779</link>
            <description><![CDATA[ MySQL Connector/Net 6.6.3, a new version of the all-managed .NET driver for MySQL has been released.  This is the second of two beta releases intended to introduce users to the new features in the release.<br />
<br />
This release is feature complete it should be stable enough for users to understand the new features and how we expect them to work.  As is the case with all non-GA releases, it should not be used in any production<br />
environment.  It is appropriate for use with MySQL server versions 5.0-5.6.<br />
<br />
It is now available in source and binary form from <a href="http://dev.mysql.com/downloads/connector/net/#downloads"  rel="nofollow">http://dev.mysql.com/downloads/connector/net/#downloads</a> and mirror sites (note that not all mirror sites may be up to date at this point-if you<br />
can't find this version on some mirror, please try again later or choose another download site.)<br />
<br />
The 6.6 version of MySQL Connector/Net brings the following new features:<br />
<br />
  * Stored routine debugging<br />
  * Entity Framework 4.3 Code First support<br />
  * Pluggable authentication (now third parties can plug new authentications mechanisms into the driver).<br />
  * Full Visual Studio 2012 support: everything from Server Explorer to Intellisense&amp;   the Stored Routine debugger.<br />
<br />
Stored Procedure Debugging<br />
-------------------------------------------<br />
We are very excited to introduce stored procedure debugging into our Visual Studio integration.  It works in a very intuitive manner by simply clicking 'Debug Routine' from Server Explorer. You can debug<br />
stored routines, functions&amp;   triggers. These release contains fixes specific of the debugger as well as other fixes specific of other areas of Connector/NET:<br />
<br />
  * Added feature to define initial values for InOut stored procedure arguments.<br />
  * Debugger: Fixed Visual Studio locked connection after debugging a routine.<br />
  * Fix for bug Cannot Create an Entity with a Key of Type String (MySQL bug #65289, Oracle bug #14540202).<br />
  * Fix for bug &quot;CacheServerProperties can cause 'Packet too large' error&quot;. MySQL Bug #66578 Orabug #14593547.<br />
  * Fix for handling unnamed parameter in MySQLCommand. This fix allows the mysqlcommand to handle parameters without requiring naming (e.g. INSERT INTO Test (id,name) VALUES (?, ?) ) (MySQL Bug #66060, Oracle bug #14499549).<br />
  * Fixed end of line issue when debugging a routine.<br />
  * Added validation to avoid overwriting a routine backup file when it hasn't changed.<br />
  * Fixed inheritance on Entity Framework Code First scenarios. (MySql bug #63920 and Oracle bug #13582335).<br />
  * Fixed &quot;Trying to customize column precision in Code First does not work&quot; (MySql bug #65001, Oracle bug #14469048).<br />
  * Fixed bug ASP.NET Membership database fails on MySql database UTF32 (MySQL bug #65144, Oracle bug #14495292).<br />
  * Fix for MySqlCommand.LastInsertedId holding only 32 bit values (MySql bug #65452, Oracle bug #14171960).<br />
  * Fixed &quot;Decimal type should have digits at right of decimal point&quot;, now default is 2, and user's changes in<br />
    EDM designer are recognized (MySql bug #65127, Oracle bug #14474342).<br />
  * Fix for NullReferenceException when saving an uninitialized row in Entity Framework (MySql bug #66066, Oracle bug #14479715).<br />
  * Fix for error when calling RoleProvider.RemoveUserFromRole(): causes an exception due to a wrong table being used (MySql bug #65805, Oracle bug #14405338).<br />
  * Fix for &quot;Memory Leak on MySql.Data.MySqlClient.MySqlCommand&quot;, too many MemoryStream's instances created (MySql bug #65696, Oracle bug #14468204).<br />
  * Added ANTLR attribution notice (Oracle bug #14379162).<br />
  * Fix for debugger failing when having a routine with an if-elseif-else.<br />
  * Also the programming interface for authentication plugins has been redefined.<br />
<br />
<br />
Some limitations remains, due to the current debugger architecture:<br />
<br />
  * Some MySQL functions cannot be debugged currently (get_lock, release_lock, begin, commit, rollback, set transaction level)..<br />
  * Only one debug session may be active on a given server.<br />
<br />
The Debugger is feature complete at this point. We look forward to your<br />
feedback.<br />
<br />
Documentation<br />
-------------------------------------<br />
You can view current Connector/Net documentation<br />
at <a href="http://dev.mysql.com/doc/refman/5.5/en/connector-net.html"  rel="nofollow">http://dev.mysql.com/doc/refman/5.5/en/connector-net.html</a><br />
<br />
You can find our team blog at <a href="http://blogs.oracle.com/MySQLOnWindows"  rel="nofollow">http://blogs.oracle.com/MySQLOnWindows</a>.<br />
You can also post questions on our forums at <a href="http://forums.mysql.com/"  rel="nofollow">http://forums.mysql.com/</a>.<br />
<br />
Enjoy and thanks for the support!]]></description>
            <dc:creator>Fernando Gonzalez Sanchez</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Fri, 28 Sep 2012 16:11:15 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,569121,569121#msg-569121</guid>
            <title>Fatal error encountered attempting to read the resultset. (2 replies)</title>
            <link>http://forums.mysql.com/read.php?47,569121,569121#msg-569121</link>
            <description><![CDATA[ I am trying to import a CSV file into a MySQL database.  I have C# code written to do the import.  Thus far I have tried changing the statement to use either field or column, I have tried using \r, \n and a combination to terminate the line.  I also changed the Time column from Date/Time to VARCHAR(45) and I verified that there is a table column for each column I am trying to import, unless I missed one.  <br />
<br />
This is the SQL Statement:<br />
<br />
LOAD DATA LOCAL INFILE 'D:\\SANCentral\\Customer Files\\ibm\\70738\\0918\\Switch <br />
Port.csv' INTO TABLE By_Switch FIELDS TERMINATED BY ',' LINES TERMINATED BY '\\\r\\n' IGNORE 1 LINES<br />
<br />
<br />
Trying the above from the MySQL workbench doesn't work either but it doesn't say why.  I am hoping I don't need to add the columns option to the statemnt, I have a lot of columns.  <br />
<br />
I am trying to execute it with this code in C# where commandstring is a string set to the above and sqlconnect is the open connection.  <br />
<br />
MySqlCommand cmd = new MySqlCommand(commandstring,sqlconnect);<br />
cmd.ExecuteNonQuery();<br />
<br />
<br />
this C# code worked, or at least it didn't throw an exception.  The table right now is empty<br />
commandstring = @&quot;SELECT `CRC Error Rate` From `by_switch`&quot;;<br />
 MySqlCommand cmd = new MySqlCommand(commandstring,sqlconnect);<br />
 MySqlDataReader myReader = cmd.ExecuteReader(CommandBehavior.CloseConnection);<br />
<br />
<br />
Here is a sample of the input, sorry about the formatting, this is all one line.<br />
BRCOL-CORE-A,0,2000000533586F00,1,0,9/17/12 8:45 PM,304,6527.82,24454.09,30981.9013,11.34,46.27,57.602,10.27,29.19,1.778,1.937,1.904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4,5.71,3.55,0.0,0.0,0.0,0.0<br />
B<br />
<br />
This is the SQL that created the table:<br />
CREATE  TABLE IF NOT EXISTS `PerformanceMonitors`.`By_Switch` (<br />
  `Switch` VARCHAR(45) NOT NULL ,<br />
  `Port` VARCHAR(45) NULL ,<br />
  `WWPN` VARCHAR(45) NULL ,<br />
  `Slot` VARCHAR(45) NULL ,<br />
  `Index` VARCHAR(45) NULL ,<br />
  `Time` VARCHAR(45) NULL ,<br />
  `Interval` DOUBLE NULL ,<br />
`Port` DOUBLE NULL ,<br />
`Send Packet Rate` DOUBLE NULL ,<br />
`Port Receive Packet Rate` DOUBLE NULL ,<br />
`Total Port Packet Rate` DOUBLE NULL ,<br />
`Port Send Data Rate` DOUBLE NULL ,<br />
`Port Receive Data Rate` DOUBLE NULL ,<br />
`Total Port Data Rate` DOUBLE NULL ,<br />
`Port Peak Send Data Rate` DOUBLE NULL ,<br />
`Port Peak Receive Data Rate` DOUBLE NULL ,<br />
`Port Send Packet Size` DOUBLE NULL ,<br />
`Port Receive Packet Size` DOUBLE NULL ,<br />
`Overall Port Packet Size` DOUBLE NULL ,<br />
`Error Frame Rate` DOUBLE NULL ,<br />
`Dumped Frame Rate` DOUBLE NULL ,<br />
`Link Failure Rate` DOUBLE NULL ,<br />
`Loss of Sync Rate` DOUBLE NULL ,<br />
`Loss of Signal Rate` DOUBLE NULL ,<br />
`CRC Error Rate` DOUBLE NULL ,<br />
`Short Frame Rate` DOUBLE NULL ,<br />
`Long Frame Rate` DOUBLE NULL, <br />
`Encoding Disparity Error Rate` DOUBLE NULL,<br />
`Discarded Class3 Frame Rate` DOUBLE NULL, <br />
`F-BSY Frame Rate` DOUBLE NULL, <br />
`F-RJT Frame Rate` DOUBLE NULL, <br />
`Port Send Bandwidth Percentage` DOUBLE NULL, <br />
`Port Receive Bandwidth Percentage` DOUBLE NULL,<br />
`Overall Port Bandwidth Percentage` DOUBLE NULL, <br />
`Primitive Sequence Protocol Error Rate` DOUBLE NULL, <br />
`Invalid Transmission Word Rate` DOUBLE NULL, <br />
`Link Reset Transmitted Rate` DOUBLE NULL, <br />
`Link Reset Received Rate` DOUBLE NULL, <br />
  PRIMARY KEY (`Switch`, `Time`) )]]></description>
            <dc:creator>David Green</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Mon, 01 Oct 2012 17:11:01 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,569107,569107#msg-569107</guid>
            <title>SQL Server statement to MySQL statement (4 replies)</title>
            <link>http://forums.mysql.com/read.php?47,569107,569107#msg-569107</link>
            <description><![CDATA[ I am needing to translate a SQL Server statement to MySQL and I was hoping to find an easy opensource translator that I can paste in the SQL Server statement and it translate it to what the MySQL statement should be.]]></description>
            <dc:creator>jed cadle</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Thu, 27 Sep 2012 19:14:31 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?47,568003,568003#msg-568003</guid>
            <title>Synchronization (3 replies)</title>
            <link>http://forums.mysql.com/read.php?47,568003,568003#msg-568003</link>
            <description><![CDATA[ I have an application which uses a hosted MySQL DB.<br />
But in case internet is not available the application uses a local DB<br />
but when it connects back it should sync with the hosted DB..How do I do<br />
this??<br />
And my application is C# based]]></description>
            <dc:creator>John Paul</dc:creator>
            <category>C#, Mono, .Net</category>
            <pubDate>Mon, 24 Sep 2012 15:30:54 +0000</pubDate>
        </item>
    </channel>
</rss>
