MySqlConnection.GetSchema for Columns (no replies)
To get column information with SqlClient or other providers you do: DataTable schema = conn.GetSchema("Columns", new string[4] { conn.Database, null, "products", null }); With MySQL Connector/NET is...
View ArticleProblem with Visual Studio 2010 Lightswitch Beta and MySQL 6.3.5 Connector...
I have installed VS2010 Lightswitch Beta and the MySQL 6.3.5 Connector Net. When I try to connect to an external data source in Lightswitch I get a message that "The MySQL Connector Net 6.3.5 package...
View ArticleType mapping (1 reply)
Is there a table somewhere with the type mapping from MySQL to Entity Framework (C#) and the other way around? I found this from a competitor product, but it doesn't mean the mapping is the same:...
View ArticleNon-English Character Update problem (no replies)
Hi... I am trying to update a field with non-english characters, in debug mode i check querry and it's fine when I try to run it on phpmyadmin but it doesn't work here... it doesn't throw an exception...
View ArticleDateTime error (no replies)
Hi, I have a stored procedure taking in a datetime parameter as follows: CREATE DEFINER=`root`@`localhost` PROCEDURE `p5`(inizio DATETIME) BEGIN SELECT * FROM allottment WHERE dal > inizio; END My...
View ArticleAdd Connection window disappear (no replies)
There are couple topics about disappearing windows during ading connection in Visual Studio (in my case VS 2008 SP1). Partial solution is to install specific version of MySQL connector. When somebody...
View ArticleBacking Up and restoring in c# with progress bar (no replies)
Is there a way to backup and restore MySQL databases in c# using connector .net and also be able to track progress with a progress bar? i don't necessarily need full code, i just need to know what...
View Articleload balancing and failover with MySQL Cluster using Connector/NET (no replies)
I noticed that Connector/J support load balancing and failover for use with MySQL Cluster: http://blogs.sun.com/carriergrademysql/entry/how_to_use_jdbc_connector...
View Articledot net connector + vb.net + picture + blob (no replies)
Good Day Hope anyone could help me i have a program that should display worker photo's, but could not manage to get it working in mysql (it is working in firebird, but i prefer mysql). My Vb.net code...
View ArticleMySQL Connector/Net 6.3.5 maintenance released (no replies)
Dear MySQL Users, We're happy to announce the latest maintenance release of MySQL Connector/Net 6.3.5. Version 6.3.5 maintenance release includes: Fixes to some installer bugs related to .NET...
View ArticleConnector .Net 6.3.5 Access denied for user ''@'localhost' (using password:...
I followed the tutorial here: http://dev.mysql.com/doc/refman/5.1/en/connector-net-tutorials-asp-roles.html#c11548 when setting up my connection. I created two users and roles but when I click the...
View ArticleError Loading Assembly in Web.Config (no replies)
Hello, I got the below error after deploying my asp.net site, please how can i solve it: Server Error in '/' Application. Configuration Error Configuration Error Description: An error occurred during...
View Articlehow to connect remotely C# and Mysql ( HTTP tunneling ) using MySql Connector...
The following code is used to connect C# with mysql server Collapse connectionParam = "SERVER=" + DbServer + ";DATABASE=" + dbName + ";UID=" + uName+ ";PASSWORD=" + pass; MySqlConnection mConnection =...
View ArticleErrors using Dataset Designer in Visual Studio 2008 (no replies)
Hi, I am searching for a solution to following error: "Mouse drag operation failed." "Could not retrieve schema information for table or view 'payment'.." 'payment' is a table I wanted to drag from...
View ArticleTimeout during Commit (no replies)
We're having mysterious network problems with MySQL. Simple update query (updating single row using index) usually runs immediately, then sometimes (let's say 1 in 1000 times) fails with timeout. Same...
View ArticleCascading auto-increment keys and C# DataSets - MS SQL vs MySQL (no replies)
Hi Does anybody know why the cascading foreign key relationships to auto-incrementing primary keys in a .net DataSet behaves differently with MySQL vs. MS SQL? I'll flesh it out a bit. I created a...
View ArticleInstalling connector 6.3.5 on Windows 7 64 bit (no replies)
I have looked all over the internet, and cannot find an answer. Sorry if it is simple. I have downloaded the latest 6.3.5 MSI file. When I attempt to install it, it progresses about halfway through,...
View ArticleVisual Studio 2010 (2 replies)
I apologise if this topic has been covered before. I have attempted to search the net for possible solutions but have been unsuccessful. I am an ex-developer that has decided to venture back into...
View ArticleConnecting to MySQL on windows server (no replies)
Hi All I haven't been here for ages I've been using a connector i download from here a long time ago MySql.Data.dll But recently, .net problems , which I believe are unrelated , convinced me to come...
View ArticleNo luck with InsertRow - ExecuteNonQuery slow (no replies)
The scenario is this - a local SQL Server database with data from 7 different tables needs to synchronize data to a mysql database over the web (a secured customer portal accesses the data on the...
View Article