MySQL 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

0
votes
0answers
24 views

C++ mySQL connector multiple errors (Windows)

I've been trying to get MySQL working with Visual Studio 2012 and Windows (x86) in general. I don't have problems on Linux, however, I get a lot errors on Windows. This is my code (I've copied from ...
0
votes
1answer
14 views

MySql connector in vb.net

I try to use MySql Connector for vb.net, But I got the same error always which is Can not connect specific host I use this code : Imports MySql.Data.MySqlClient Imports MySql.Data Imports ...
1
vote
1answer
16 views

VS 2012 - Can't add MySQL.Data libraries to my WP7 C# project

I have the problem described in question title. I doesn't understand for what exactly reason(s) Nuget can't add libraries of MySQL.Data framework to my project (Silverlight v4.0 / C# target Windows ...
0
votes
1answer
23 views

c++ Mysql save binary blob in database

So I am using g++ and Mysqlcppconn (Mysql c++ connector) on a ubuntu 64 bit machine. I want to insert binary data blob into the database and be able to retrieve it. Retieval typedef unsigned char ...
0
votes
0answers
3 views

mysql c++ connector getString returns WCHAR collation

I have a simple code that retrieves a string from a MySQL database: const char* uri = res->getString("uri").c_str(); uri is filled with strange characters. I edited the code as follows: WCHAR ...
0
votes
1answer
21 views

Insert data to Mysql via minicom hyperterminal

I will describe my project and I would like some directions or steps of how can I do it. I am using Raspberry Pi with Raspian(like Debian). I connected a TTL device via USB which gives me some results ...
1
vote
1answer
32 views

Using mysql c++ connector connection refused [closed]

I get this error when connecting to a MySQL database: Connection using old (pre-4.1.1) authentication protocol refused (client option 'secure_auth' enabled) The problem seems to occur by using ...
0
votes
1answer
15 views

Building 32-bit mysql c++ connector from source on a 64-bit machine

I want to build a Win32 version of mysqlcppconn.dll from source so I can use it in my Win32 applications. I am running on 64bit Windows 8 with Visual Studio 2012. I used CMake to create the solution ...
4
votes
2answers
78 views

Access denied for User 'root'@'localhost' (using password: YES )

I would like to connect with my local MYSQL data base, which is installed along with XAMP server. I created a new User ie, " NewUser " and its password is "password". I given all PRIVILEGES to this ...
0
votes
1answer
30 views

Convert unsigned char to std::istream

I'm trying to write data of type Blob into a MySQL database using MySQL Connector/C++. I've used a prepared statement which led me to this: preparedstatement->setBlob(2, [std::istream* blob]); I ...
3
votes
2answers
37 views

Why won't Python return my mysql-connector cursor from a function?

Python (2.7.3) is violating my mysql-connector cursor in some strange way when I return it from a function. This first example works fine... cnx = connect() sql = "SELECT * FROM MyTable" cursor = ...
-1
votes
0answers
20 views

Timeout prior to obtaining a connection from pool in a custom handler (C#) with mysql .net connector data driver

I'm in trouble with this issue (logged with log.net) in my custom handler: MySql.Data.MySqlClient.MySqlException: error connecting: Timeout expired. The timeout period elapsed prior to obtaining a ...
0
votes
0answers
35 views

How to connect to MySQL with VC++ CLR connector? [closed]

I have found an example to connect to MySql with VC++ CLR in the link below: http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/15f0507f-0542-4966-8efe-a24e80757c09 The problem is that ...
0
votes
1answer
51 views

netbeans mysql connector No such file or directory (MinGW)

i try to link mysql-connector 1.1.3 in Netbeans (7.3, Windows 7) with Mingw-Compiler to my c++ Project. In the project properties i have add all mysql-connector directories (include, lib, cppcon) ...
1
vote
2answers
59 views

C++ Connector to MySQL

EDITED: My Problem is the errors at the bottom of this post. Heres my additional include directories C:\Program Files\boost C:\Program Files\MySQL\MySQL Connector C++ 1.1.3\include C:\Program ...
0
votes
1answer
112 views

fatal error C1083: Cannot open include file: 'boost/variant.hpp': No such file or directory

I'm working on a project due in 2 days, and for the past 2 days, I've just been searching for a way to get this to work. I'm fairly new to C++, and our Class project requires us using C++ to make 5 ...
0
votes
1answer
38 views

Can I force MySQL to transmit numerical values as binary?

I've been investigating network performance of our MySQL/C++ application. I found that our clients read all values (ints, doubles, etc.) from the MYSQL C-Connector in ASCII literals. That means that ...
1
vote
1answer
72 views

WCF and MySQL Connector

I created a WCF service. It uses MySQL Connector to connect to a MySQL Database. The consumer of the service is a Windows Phone app. On my computer everything works great. But if I publish the WCF ...
0
votes
3answers
271 views

Entity Framework 5.0 code-first with MySQL Connector 6.6.5.0 on .Net 4.5

For the life of me, I can't get my C# WinApp to work with Entity Framework 5.0 with a MySql database using MySql connector 6.6.5.0 (MySql.Data reference) and MySql Entity 6.5.4.0 (MySql.Data.Entity ...
0
votes
0answers
26 views

MySQL threaded functions with Connector/C++

When my application terminates under Linux I get the following error: Error in my_thread_global_end(): 1 threads didn't exit According to this question and answer the problem is with using MySQL ...
0
votes
0answers
16 views

MySQL/Mono can only execute the first procedure

I am having trouble calling multiple stored procedures using Mono 2.10.9 and MySQL Connector 6.6.5.0. I have 3 stored procedures that are called one after another - no matter what I do the first one ...
0
votes
0answers
28 views

Can you use MySQL @ session variables in the C# connector?

I have a query that utilizes MySQL session variables (note the @rank variable) SELECT Rank, UserId, CurrentVDOT FROM ( SELECT @rank := @rank + 1 AS Rank, UserId, MaxVDOT AS CurrentVDOT ...
0
votes
0answers
64 views

MySQL NET Connect 6.7.2 in Visual Studio 2012

I have installed the MySQL NET Connector 6.7.2 and am currently unable to get Visual Studio 2012 to recognize that the connector is installed. Is there a trick to this with the beta connector? I see ...
0
votes
1answer
59 views

C# mysql returning list of rows

I would like to return ArrayList of values from mysql database. I have tried couple of solutions but they were not as elegant as I need. My problem: I have a table in database that can change ...
0
votes
1answer
34 views

Transaction not being honored MySql .NET connector with multiple queries

I've tried researching this topic but it doesn't make sense. I have a bit of code trying to execute an UPDATE query and then loop through another set of INSERT queries. The second query errors ...
1
vote
1answer
17 views

Does MySQL Connector/J read ~/.my.cnf?

I have a Java application that uses MySQL with the Connector/J MySQL connector. I would like to specify the default client charset in the $HOME/.my.cnf file of the application user, so that it does ...
1
vote
0answers
109 views

How can a MFC Unicode application use MySQL ODBC Connector to connect to a latin1 MySQL database?

I unsuccesfully made various attempts to update records, where the name of the row in a MySQL database contains Umlaute (ä,ü,ö,ß). Finally I suspect that Record Field Exchange doesn't handle Umlaute ...
0
votes
0answers
31 views

Replace Devart DotConnect with MySQL Connector / Net - Visual Studio 2010

I am working on a Visual Studio 2010 Solution. This solution is a web-site comprised of multiple web apps (using javascript, asp, etc.). Every time I compile, I get an error message stating that my ...
1
vote
0answers
77 views

Visual Build Pro - Build Analysis Services Cube with MySQL datasource

I am trying to create a build script using Visual Build Pro v7 for an Analysis Services Cube I have created. The cube deploys to my local machine without issue using the following build script ...
0
votes
0answers
25 views

mysql.connector.ProgrammingError in Python when insert data to table

I am writing a script to read data from a file by lines and insert each line into MySQL database. I use mysql.connector to do this. Here is a piece of script. def insert_query(data): return ...
0
votes
0answers
76 views

Printing table from MySQL Database using Python & mysqlconnector

I've been trying for a while to show a table from my MySQL database in my browser using Python. I am using MySQL connector to create the connection with my database. (MySQLdb doesn’t work) The problem ...
0
votes
0answers
31 views

weakly-referenced object no longer exists error on creating a function

I am working with MySQL connector and Python 3.3. I am creating a script that consists of functions that frequently access database server. So for all the functions I have created, I am trying to ...
0
votes
0answers
30 views

MySQL Connector, Streaming Resultsets and Batch Fetching

I was browsing through the MySQL Connector (5.1.24) source code and I noticed something unusual in the method StatementImpl#createStreamingResultSet The javadoc says We only stream result sets ...
0
votes
1answer
31 views

string inside a quote

So the documentation for the C++ connector mysql says sql::Connection *con; sql::PreparedStatement *prep_stmt // ... prep_stmt = con->prepareStatement("INSERT INTO test(id, label) VALUES (?, ...
0
votes
1answer
29 views

MySQL c connector: executing queries from separate threads

I create the connection to the server in the main thread of application: ClassA::ClassA( void ) { mpMySQL = mysql_init( NULL ); if( !mysql_thread_safe() ) { // Error ; } } ...
-2
votes
1answer
46 views

Error LNK2031, LNK2028, LNK2019, LNK2001

So I was able to successfully build a program in visual c++ using a command prompt. It was a simple program to read from the database then write to the database based on some variable. So I decided to ...
0
votes
0answers
47 views

Can't compile Mysql connector - make clean doesn't work

I'm trying to compile Mysql Connector on Ubuntu 12.04(manual). I already compiled it on other machine with Ubuntu too. There were some problems but I solved it with Google. Now I have some problem ...
0
votes
2answers
74 views

JBoss Deploying non-JDBC-compliant driver class com.mysql.jdbc.Driver

Good evening all, does any one know anything about this error JBAS010404: Deploying non-JDBC-compliant driver class com.mysql.jdbc.Driver (version 5.1) it always appears when i start deploying ...
0
votes
0answers
12 views

MySQL c client: determine the connection state

Is a way to determine the connection state? One way is to store the result of the mysql_real_connect( mysql,. . . ). But how I can do this later? For example: bool res = IsConnected( (MYSQL*) mysql ...
1
vote
1answer
36 views

MySQL Connector/J - Mapping Java String to MySQL INT

The documentation for Connector/J says that it can easily convert a MySQL INT to a Java String type. (That is, mapping from a result set to a Java type.) But does this work the other way around? In ...
0
votes
1answer
88 views

JMeter jdbc:mysql error

I am trying to setup a JMeter server/client instance on a remote database server. I have extracted JMeter on the server, copied the MySQL java connector into $JMETER_HOME/lib and started the ...
1
vote
2answers
43 views

Invalid attempt to read - Is possible using Action?

public void ExecuteAction(MySqlCommand query, Action<MySqlDataReader> action) { _connection.Open(); query.Connection = _connection; using(var reader = ...
-2
votes
1answer
60 views

Why do I get an access violation in my project and a working program if I use the same code in a new project? [duplicate]

My project compiles fine if I insert some sample code from mysql C++ connector, but the program crashes with: Unhandled exception at 0x552CEB8C (msvcr110d.dll) in comClient.exe: 0xC0000005: Access ...
0
votes
1answer
112 views

Why does mysql c++ connector work in main() but not in a class method?

This code works if it's in main: int main(void) { cout << endl; cout << "Running statement." << endl; try { sql::Driver *driver; sql::Connection *con; sql::Statement *stmt; ...
4
votes
2answers
62 views

.NET Connector only returns first record

I have a weird 'bug/error', at the the .NET Connector only returns to me one record while there are 5 or something. The MySQL Command Line also returns 1. Here is the code I'm really stuck with this, ...
0
votes
1answer
77 views

WebLogic--->Cannot load driver: com.mysql.jdbc.Driver

i have a problem in creating a data source in weblogic application server 10.3, i'm making a JDBC connection for MySql database , i placed the mysql driver in the lib folder of weblogic ...
1
vote
1answer
132 views

MySQL C++ Connector crashes my app at ResultSet->getString()

It's me again probably asking noob C++ questions I had MAJOR headaches making the darn (sorry for the language) MySQL C++ connector work. I don't know if it is poorly written or something, but for my ...
0
votes
2answers
100 views

No suitable driver found for dbc:mysql://localhost:8080/kholofedb

I have searched across the internet about this problem the whole of yesterdy... I am a beginner with JDBC, but the solutions provided here and other sites are not working for me. I am using ...
0
votes
0answers
50 views

Import mysqldump contents with MySqlCommand

I have a mysqldump output file. I can copy and paste the whole contents of the file into Mysql Workbench and execute the queries, at once, with success. But when I execute the whole contents of the ...
0
votes
0answers
21 views

MySql Connector Query against an enum field

I've got the following query I'm trying to run: SELECT key FROM game_sessions WHERE created_by = @param_val_1 AND status = @param_val_2" I've managed to isolate the syntax error to the column named ...

1 2 3 4 5 9