MySQL Connector/Python 8.0.12 has been released (no replies)
https://insidemysql.com/mysql-connector-python-8-0-12-has-been-released/
View ArticleMysql prepared statement in a Store procedura invoked in python through mysql...
I have a sql stored procedure that invokes prepare and execute statements. It Works perfectly when invoked from a mysql workbench editor. But when calling it vía python mysql callproc, it fails with a...
View ArticleLEFT JOIN give different result in PhpMyAdmin and Python code (no replies)
Hi, I am quiet new to this forum, but didn't find out some answer about this problem. I get information from a first table (Event) in order to know the running actions. And for those production tasks...
View ArticleMySQL Shell: Using External Python Modules (no replies)
MySQL Shell: Using External Python Modules https://mysql.wisborg.dk/2018/08/16/mysql-shell-using-external-python-modules/
View ArticleConnector escape strings (no replies)
Good day and have a nice day! i use mysqlConnector with python 3.6.5 In python i have list: zipped = [('akamaitechnologies.com', 8221, 0), ('akamaitechnologies.com', 2053, 0),...
View ArticleNoSQL/X DevAPI Tutorial with MySQL Connector/Python 8.0 (no replies)
NoSQL/X DevAPI Tutorial with MySQL Connector/Python 8.0 https://mysql.wisborg.dk/2018/09/10/nosql-x-devapi-tutorial-with-mysql-connector-python-8-0/
View ArticleFailed calling stored routine; bytearray index out of range (no replies)
When I use pip install mysql-connector-python, then try cursor.callproc. The error occurred: Failed calling stored routine; bytearray index out of range Therefore I have to uninstall...
View Articledatetime insert error (no replies)
can you please explain why that code doesn't work Code (Python): date = row['actionTime'] #date my_time = date.strftime('%Y-%m-%d %H:%M:%S') t_dict[ts] = my_time placeholders = ', '.join(['%s'] *...
View Articlemysql.connector.errors.NotSupportedError: Authentication plugin...
I start python3 and entered the below import mysql.connector cxn=mysql.connector.connect(user='xx',password='xxx',database='xxx) I get the error in the subject. Any idea? I listed the installed...
View ArticleUpdate value and reset on reaching value? (1 reply)
Hi there, I'm hoping I can do this in a begin-commit statement, I've been looking at it, but can't get it right. I have a field Counter I need to increment the counter until it hits x then reset the...
View ArticleMysql and mac (no replies)
Hi there. I've been struggling to find a solution for running Mysql with Python on the mac, what/where/who do I need to install? I can't find any mention of a python.connector for the mac. This must...
View ArticleDevelop Python Applications with MySQL Connector/Python (no replies)
Python and the MySQL Document Store — https://www.slideshare.net/JesperWisborgKrogh/python-and-the-mysql-document-store Develop Python Applications with MySQL Connector/Python —...
View ArticleUsing Django with MySQL 8 (no replies)
https://mysql.wisborg.dk/2018/11/05/using-django-with-mysql-8/
View ArticleMySQL X DevAPI Connection Pool with Connector/Python (no replies)
https://mysql.wisborg.dk/2018/11/15/mysql-x-devapi-connection-pool-with-connector-python/
View ArticleImporting Data from MongoDB to MySQL using Python (no replies)
https://mysqlserverteam.com/importing-data-from-mongodb-to-mysql-using-python/
View ArticleMysqlx ValueError: Unknown character (no replies)
Hi Folks, Just started using MySqlx for the first time and having issues dumping a json file in the collection. I get this error: ValueError: Unknown character from file :...
View ArticleSeeking solution for ModuleNotFoundError: No module named 'mysql' (no replies)
Please help me solve the following error: When i tried this: import mysql.connector, I got the follwong message. Traceback (most recent call last): File "C:/Users/Lenovo...
View ArticlePython MySQL Connector and uwsgi (no replies)
I'm running python flask application on nginx with uwsgi, and I have the problem using MySQL connector (mysql-connector-python==8.0.13). When I run: cnx = mysql.connector.connect(user='xxxxxxx',...
View ArticleUsing mysql.connector (2 replies)
Hello This is a real newbie question. I have read some about mysql.connector and I want to try it out in my project. I understand that I have to download and install something to be able to use it....
View ArticleWrong date format in MYSQL after python insert (no replies)
Hi, I have the following code in python to inset data in a MySql table: sql = "INSERT INTO ap_temp_data (sensor, date, time, temp) VALUES (%s, %s, %s, %s)" #temp_avalue=read_temp() val = (sensor,...
View Article