Tagged Questions

provides standards-based drivers for JDBC, ODBC, and .Net enabling developers to build database applications in their language of choice. In addition, a native C library allows developers to embed MySQL directly into their applications.

learn more… | top users | synonyms

15
votes
2answers
5k views

How do I setup ASP.NET MVC 2 with MySQL?

Is it possible to setup ASP.NET MVC 2 to work with a MySQL database?
6
votes
3answers
841 views

Is there any (performance) difference between Debug and Release?

I'm using MySql Connector .NET to load an account and transfer it to the client. This operation is rather intensive, considering the child elements of the account to load. In Debug mode, it takes, at ...
5
votes
1answer
654 views

MySQL Entity Framework 4.0 Stored Procedure Field Mapping

Has anyone here used MySQL with the entity framework 4.0 and stored procedures? When I add a SP, it does not show any of my fields that I need to input. I also see no way to manually add them. ...
4
votes
1answer
440 views

.NET MySQL Connector Conflicting DbProviderFactories

I'm using the .NET MySQL Connector with Entity Framework 4, and everything worked great but I wanted to package the MySQL client DLL files with my application when deployed on servers so we don't have ...
4
votes
2answers
574 views

Mac OS X Mono and MySql Connector Problem

I downloaded mysql-connector-net-6.4.3-noinstall.zip, extracted and renamed mysql.data.dll to MySql.Data.dll: $ cd v2/ $ ls mysql.data.cf.dll mysql.data.dll mysql.data.entity.dll ...
4
votes
2answers
620 views

MVC3 code-first- EF4.1 doesn't create tables automatically (using MySQL and Connector/Net 6.3.6.)

EF 4.1 together with MySQL and Connector/Net 6.3.6 doesn't create tables auto-magically based on my POCO objects. I'm not sure if I have the configuration wrong or if Connector/.Net 6.3.6 simply ...
4
votes
0answers
159 views

Weird NPE on BatchingBatcher “JDBC driver did not return the expected number of row counts”

I'm running a spring/hibernate java app on tomcat and I'm seeing this funky error on update: JDBC driver did not return the expected number of row counts Caused by: java.lang.NullPointerException ...
4
votes
3answers
4k views

MySQL: Removing duplicate columns on Left Join, 3 tables

I have a table that uses 3 foreign keys into other tables. When I perform a left join, I get duplicate columns. MySQL says that the USING syntax will reduce the duplicate columns, but there aren't ...
3
votes
1answer
213 views

EF4.1 multiple nested entity Includes gets NotSupportedException?

Edit: Updated problem description based on testing - 12 Sep 2011. I have this query that throws a NotSupportedException ("Specified method is not supported.") whenever I call .ToList(). ...
3
votes
1answer
114 views

MySQL C API Handle TEXT field

When one uses Prepared Statements in MySQL C API to handle TEXT field result, one has to specify the length of the string for an out binding: MYSQL_BIND out_bind; char ...
3
votes
3answers
1k views

How to connect to mysql using mysql connector via C# without actually installing the connector

We have a dot net 2.0 based C# product which uses Mysql as the data storage. When we install the mysql connector 6.3.6 on the XP/Win 7 machine, we are able to connect to the database from the C# code ...
3
votes
1answer
314 views

The MySQL .NET adapter refuses to connect from Mono no matter what I try

I am attempting to make a simple connection to a MySql database, located on another machine. I can telnet to the data source on Windows and using the terminal on OSX and Ubuntu -- both internal and ...
3
votes
1answer
278 views

Devart MySQL 6.10.96 or MySQL Connector 6.3.6?

Just wondering whether anyone has any views on whether DevArt MySQL is > MySQL Connector ? In the past, when I have used MySQL - the MySQL Connector really sucked for C# ASP.NET development work. Can ...
3
votes
8answers
1k views

C# and MySQL .NET Connector - Any way of preventing SQL Injection attacks in a generic class?

My idea is to create some generic classes for Insert/Update/Select via a C# (3.5) Winforms app talking with a MySQL database via MySQL .NET Connector 6.2.2. For example: public void Insert(string ...
3
votes
1answer
191 views

Nant cant find assembly in the GAC

I have a .Net project which uses the MySQL connector which is located in the GAC. In my Nant build file there doesnt seem to be a way to tell CSC to look in the GAC to find this dll (or type ...
3
votes
3answers
978 views

MySQL Connector: parameters not being added

Looking at my query log for MySQL, I see my parameters aren't being added. Here's my code: MySqlConnection conn = new MySqlConnection(ApplicationVariables.ConnectionString()); ...
2
votes
1answer
229 views

Zeoslib: How to tell when query execution is complete?

I am using ZeosLib within Delphi to call a MySQL stored procedure through the TZQuery object. Immediately after MySQL finishes execution of the stored procedure I need to initiate my next block of ...
2
votes
2answers
171 views

Running a built .NET application which required MySql.Data

Im having a problem running a built .NET application which I wrote: My application uses the latest MySql connector which is installed on my system and shows up as a .NET 4 Framwork component when I ...
2
votes
1answer
369 views

MySQL Connector/Net does not work with Mono on Mac

I'm starting to develop some applications using mono and MySQL. While experimenting with those tools I tried to use the Connecotr/net of MySql. I've downloaded the latest version and installed it like ...
2
votes
1answer
358 views

How can I avoid using mysql_real_connect() repeatedly for each query?

I am querying my database through a connector I made in Lazarus/Freepascal. It uses the libmysql from MySQL 5.0. From what I can tell, the functions I can invoke are identical to those of the MYSQL C ...
2
votes
2answers
545 views

Inserting multiple records into MySQL using MySqlCommand in one query C# (MySQLConnector) & command Parameters for escaping quotes

I am trying to insert multiple records into a table in one query using the MySqlCommand object in C# (using the MySQL Connector library). The only way I know how to do this is by dynamically ...
2
votes
3answers
190 views

Encoding problems in Mysql database

I have a table in a Mysql 5.1 schema. Statement for create this table is: CREATE TABLE `prova` ( `id` varchar(150) NOT NULL, `name` varchar(150) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY ...
2
votes
2answers
151 views

MySQL .NET Connector documentation confusion

MySQL 5.0 Connector.NET Examples states: GetBytes returns the number of available bytes in the field. In most cases this is the exact length of the field. However, MySQL 5.0 Connector.NET ...
2
votes
3answers
2k views

MySQL Connector/NET connection multiple DataReaders per Connection?

Hey guys, I'm migrating from Java to C# now that I've realized I prefer the C# language features over the ones in Java, but I have this small issue. In MySQL Connector/J and JDBC, I believe that one ...
2
votes
2answers
279 views

MySQL error 2005 (using MySql C++ Connector):

I am trying to connect to a database using MySQL C++ Connector. I have used this code segment many times: driver = get_driver_instance(); connection = driver->connect("tcp://127.0.0.1:3306", ...
2
votes
4answers
1k views

How can I transfer data between 2 MySQL databases?

I want to do that using a code and not using a tool like "MySQL Migration Toolkit". The easiest way I know is to open a connection (using MySQL connectors) to DB1 and read its data. Open connection to ...
2
votes
3answers
777 views

MySQL Exception - Fatal Error Encountered During Data Read

I am working on a C# console program that grabs large numbers of records from a table, runs them through a medical grouper, and then updates each of the records. It uses MySQL Connector/NET 5.2.7. The ...
2
votes
3answers
706 views

IDataReader empties when viewing for a second time

I'm getting something pretty strange going on when trying to read some data using the MySql .net connector. Here's the code: IDataReader reader = null; using (MySqlConnection connection = new ...
1
vote
2answers
47 views

C# MySqlConnector 6.4.4 LAST_INSERT_ID() As INT64?

SELECT CONVERT(LAST_INSERT_ID(), SIGNED INTEGER); MySqlCommand.ExecuteScalar() and MySqlDataReader.GetValue(int index) both return and object type. I assumed because I explicitly converted that ...
1
vote
0answers
50 views

Is there a connector/c++ library which does not require boost?

I'm using connector/c++. It'll be fine if I include boost (or a part of it), but it's too large. A full lib is about 100MB, I tried to remove unused file, then it comes about 12MB, still large. In ...
1
vote
0answers
76 views

MySql .NET membership provider rejects logins since upgrade

I recently upgraded MySql Connector /NET 6.0.4.0 to version 6.4.4.0. My site uses the MySql Membership Provider to process logins, but since upgrading no users can log in. That is to say, ...
1
vote
0answers
58 views

Upgrade MySqlConnector .Net version 6.3.7+ crashes Mono 2.10.2 with: The assembly name is invalid

I have an ASP.Net site working well with MySql Connector.Net (MySql.Data.dll version 6.3.6). However, because of a bug in the version I need to move to 6.3.7 (or 6.4.4). However, when I install ...
1
vote
1answer
41 views

How can I get the rows from SHOW PROCESSLIST using MySQL Connector for .NET or Dapper?

I need to parse the running queries on my MySQL server. What is the easiest way to retrieve the result of SHOW PROCESSLIST from within MySQL Connector for .NET, or using Dapper? Maybe something like ...
1
vote
0answers
45 views

MySQL and Typed Dataset Designer slow

This question concerns the use of Connector\Net, MySQL, and the visual studio integration of the typed data set designer. As a beginner I have almost entirely default settings, and am using InnoDB for ...
1
vote
4answers
77 views

Calling a method from one thread to another to execute in the other thread

I'm making a server in java that has a MySQL connection in another thread, so that it's event driven and won't block the main thread. So far it works well, it works great for queries that don't ...
1
vote
1answer
283 views

classpath, eclipse and java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

I have seen & read over 10 similar questions but am still unable to figure it out. I am using windows7 / Eclipse Helios Service Release 1 / mysql-connector-java-5.1.13-bin.jar. Everything worked ...
1
vote
1answer
184 views

Why MySQL DB connector with EF 4.1 code first fails every first time?

Whenever my MVC/"EF 4.1 code first" web application tries to access the data base for the first time it gives me the following exception: [MySqlException (0x80004005): Access denied for user ...
1
vote
0answers
50 views

MySQL Connector .NET & Unicode

I am having some serious issues trying to get MySql Connector for .NET to insert unicode text into the database. I have read so many forums on this and none of the fixes seems to work. I have tried ...
1
vote
1answer
41 views

MySQL Connector Multiple Servers different port

I have an app that will be supported by two MySQL servers. They reside on 2 different machine on different network and on different ports. i found in here the following connection string for multiple ...
1
vote
1answer
137 views

How to use mvc-mini-profiler with mysql connection?

I'm currently trying to use the mvc-mini-profiler with a MySQL Connection. Is there a way to do this with some kind of custom wrapper? var mysqlConn = new MySqlConnection("Data Source=localhost; ...
1
vote
1answer
1k views

c program to add a user to mysql

I am going to add a user to MySQL through C program. I am going to do final year project in MySQL. Don't get me wrong if I ask wrong. I have one doubt in this concept, that is we can add a new user ...
1
vote
3answers
582 views

How do I set the absolute path for a assembly containing Database connector? MySQL Connector 6.4.3 with Entity Framework 4.1

Reason why: http://bugs.mysql.com/bug.php?id=61933 I recompiled the connector from source, incremented tit a version to 6.4.3.1, but now this (possibly) trivial question blocks me. How do I set the ...
1
vote
2answers
213 views

MySQL C++ Connector memory overflow error

I've been trying to hook up to my own locally hosted MySQL database with the MySQL/C++ Connector package. The lines that are really giving me a problem are: driver = get_driver_instance(); auto_ptr ...
1
vote
0answers
105 views

How can I log a prepared statement in ADO.Net / MySQL Connector

I'd like to use prepared statements with MySQL Connector/NET (or any ADO.Net provider for that matter) for our database access. The problem is that we need to log the full SQL statements as they ...
1
vote
1answer
1k views

Can't find mysql.jdbc.Driver - MySQL, JBoss

I'm unable to deploy my web app with MySQL 5.5.11 backend to JBoss 5. I get this error: Caused by: java.lang.ClassNotFoundException: com.mysql.jdbc.Driver from BaseClassLoader@262b2310 I pasted my ...
1
vote
0answers
138 views

Incorrect results when looping over recordset using Webmatrix/Mono/MySQL

I have a test ASP.NET MVC 3 web site running on Mono v2.10.2 on Ubuntu v10.04. I am using MySQL Connector/NET as the database provider. The test page is doing a simple select query to a MySQL server ...
1
vote
1answer
62 views

entity framework not generating second orderby

My problem is that I am trying to make 2 OrderBy but the second one is never generated for entity framework, I inspected the generated query. This is what I am trying to do var query = ...
1
vote
2answers
779 views

How to avoid “There is already an open DataReader associated with this Connection which must be closed first.” in MySql/net connector?

I have this following piece of code: public TimestampedRowStorage GetTimestampedRowStorage(string startTime, string endTime, long trendSettingID, int? period) { var timestampedList = ...
1
vote
1answer
267 views

Are there “official” Javadocs available for MySQL JDBC Connector?

Are there javadocs available for MySQL JDBC connector? If so, where can I find them? Googling around, I've come across links such as Class MysqlDataSource . But it is that official? I guess I'm ...
1
vote
1answer
179 views

MySqlParameter as TableName

I want to use MySqlParameter to pass tableName into query (to prevent slq injections) MySqlCommand cmd = new MySqlCommand("select * from @table"), cn) cmd.Parameters.AddWithValue("@table",TableName); ...

1 2 3 4