Top "Mysql-connector" questions

MySQL provides standards-based drivers for JDBC, ODBC, and .NET enabling developers to build database applications in their language of choice.

Cannot connect to mysql from visual studio 2015

So I have already spent about 2 days trying fix this. I have succeeded in fixing this on my workplace pc …

mysql visual-studio visual-studio-2015 mysql-connector
ClassNotFoundException with com.mysql.cj.jdbc.Driver, MySQL Connector and IntelliJ IDEA

I'm building up a Maven Java 1.8 project in which I've included the MySQL Connector as a dependency: <dependency> &…

maven jdbc intellij-idea classnotfoundexception mysql-connector
MySQL Connector for Visual Studio 2012 Update 3

since I've installed mysql connector 6.7.4 and Update 3 for Visual Studio 2012 the MySQL Connector is gone away from the Connection Manager …

visual-studio-2012 datasource mysql-connector
cursor() raise errors.OperationalError("MySQL Connection not available.") OperationalError: MySQL Connection not available

import requests import time import csv import ast import sys import mysql.connector config = { 'user': 'root', 'password': 'password', 'host': '127.0.0.1…

python mysql-connector mysql-connector-python
Python how to know if a record inserted successfully or not

I'm using Python MySQL Connector, I inserted a record into database, and it was successful. But in Python code, how …

python mysql mysql-connector
MySqlDataReader: DataTable.Fill(reader) throws ConstraintException

I have two tables orders and orderdetails table orders (PK = id, UNIQUE index on orderno) |id|orderno| | 1|1000 | | 2|1001 | table orderdetails (PK = …

c# mysql datareader mysql-connector mysqldatareader
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 …

java mysql jdbc mysql-connector
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 …

sql mysql database left-join mysql-connector
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 …

.net entity-framework entity-framework-5 .net-4.5 mysql-connector
How to create a mysql connection pool or any better way to initialize the multiple databases?

In my code I am opening two mysql connections and using HTTP requests to insert data into database g.db = …

python flask mysql-python mysql-connector