About 1,250,000 results
Open links in new tab
  1. Connect Java to a MySQL database - Stack Overflow

    Here's a short 3-minute video tutorial that demonstrates using MySQL from Java. Check it out here: Quick Tutorial: Connecting to MySQL database using Java

  2. How to connect to a MySQL Data Source in Visual Studio

    41 I use the MySQL Connector/Net to connect to my database by referencing the assembly (MySql.Data.dll) and passing in a connection string to MySqlConnection. I like that because I don't …

  3. How to install mysql-connector via pip - Stack Overflow

    Sep 24, 2015 · I use sqlalchemy to access MySQL in my Python project. sqlalchemy's conf is like this: dialect=mysql driver=mysqlconnector So I need to install the Python module mysql connector via pip. …

  4. MySQL package for python 3.7 - Stack Overflow

    The package that you want is mysql-connector-python. In fact, the official documentation says this is the recommended method for installing the MySQL Connector. For example, on Windows, open up the …

  5. MySQL :: MySQL Forums :: Connector/NET and C#, Mono, .Net

    May 20, 2024 · MySQL Forums Forum List » Connector/NET and C#, Mono, .Net New Topic Pages: 1 2 3 4 5

  6. Lost connection to MySQL server during query - Stack Overflow

    It's now obvious to me that MySql server consider all connections from the same IP as a 'single' connection and therefore drop all connections whenever a single query finishes. I wonder though that …

  7. mysql - How to retrieve SQL result column value using column name in ...

    Apr 17, 2012 · Is there a way to retrieve SQL result column value using column name instead of column index in Python? I'm using Python 3 with mySQL. The syntax I'm looking for is pretty much like the …

  8. How do I connect to a MySQL Database in Python?

    Best way to connect to MySQL from python is to Use MySQL Connector/Python because it is official Oracle driver for MySQL for working with Python and it works with both Python 3 and Python 2.

  9. Remotely connect to MySQL with Python mysql.connector

    The following code (ran from a different machine than the mysql server, within the same LAN), to locally connect to MySQL database using Python3 and mysql.connector works: import mysql.connector c...

  10. python mysql.connector DictCursor? - Stack Overflow

    In Python mysqldb I could declare a cursor as a dictionary cursor like this: cursor = db.cursor(MySQLdb.cursors.DictCursor) This would enable me to reference columns in the cursor …