-1
votes
2answers
47 views

creating database in python

I have installed mysql for python and running python from command line. I am getting syntax error while creating a database. >>> import MySQLdb >>> CREATE DATABASE chom; File ...
1
vote
2answers
52 views

Filter mySQL data while using fetchall(), before passing rows into Excel, via DataNitro

I am trying to simplify this so it will pull any data and lay out without any conflict, but I find errors if I have a date structure with colons and if some of my products have uses of backslash or ...
0
votes
1answer
26 views

Why this query works in normal python-mysql but not in the django ecosystem?

I've a simple query: Select * from tablename where col_name <> 'NULL' First I wrote this query in a *.py file with mysql connection and it worked just fine. Now I wrote it views.py inside ...
0
votes
1answer
39 views

Python MySQL Update taking 10-12 seconds to update about 1000 records

I have something along the lines of: while True: variables are set - Each loop the variables are different. sql = sql statement with above variables send sql to MySQL server I am able ...
2
votes
2answers
94 views

MySQL not accepting executemany() INSERT, running Python from Excel (datanitro)

I HAVE ADDED MY OWN ANSWER THAT WORKS BUT OPEN TO IMPROVEMENTS After seeing a project at datanitro. I took on getting a connection to MySQL (they use SQLite) and I was able to import a small test ...
0
votes
1answer
50 views

How to convert python timestamp in mysql database to date in a SQL query

I've a timestamp field in my database in which data is inserted from python datetime module. I want to convert the timestamp to date and do some filtering. I can do this in python but instead I want ...
0
votes
1answer
41 views

Why do I get different charset when python use MySQLdb?

I wrote a python program use MySQLdb in my gentoo: mysql version = 5.1.67-log Gentoo Linux mysql-5.1.67 characterset = utf-8 when I connect to mysql, and print conn.character_set_name(), it ...
-1
votes
0answers
26 views

Pandas.io write_frame throws UnicodeEncodeError

I am trying to write a frame (imported via pd.ExcelFile.parse()) to MySQL as follows: sql.write_frame(EMCompanies, con=db, name='EMCompanies', if_exists='append', flavor='mysql') Unfortunately, I'm ...
0
votes
1answer
63 views

Inserting Variables MySQL Using Python, Not Working

I want to insert the variable bob, and dummyVar into my table, logger. Now from what I can tell all I should need to do is, well what I have below, however this doesn't insert anything into my table ...
1
vote
2answers
49 views

UnicodeEncodeError and inserting a data into db

I have a Python scraper which scraper a web site and inserts a data into MySql db. All of a sudden I got an error of UnicodeEncodeError: 'latin-1' codec can't encode character u'\u20ac' in position ...
0
votes
1answer
23 views

Passing est datetime to MySql

In MySql db there is column of type DATETIME. I need to select the records by this column -- ones that are less than current est date. I used the code from Python - datetime of a specific timezone to ...
0
votes
1answer
55 views

Inserting double quotes into MySql db

I need to insert a value which contains double quotes into MySql db: import MySQLdb cursor = db.cursor() sql_pattern = 'INSERT INTO Table(column1, column2, column3....) VALUES("{0}".....)' ...
1
vote
0answers
24 views

Sorting table records in django

I am using a search field in django that searches hotel names from the hotel table based on the hotel names. For searching I am using django's function __search data=request.POST.get("data") ...
0
votes
1answer
57 views

Inserting datetime into MySql db

I have a datetime value which is made by strptime function import MySQLdb a = time.strptime('my date', "%b %d %Y %H:%M") There is a column in MySql db of type DATETIME. When I try to insert this ...
-3
votes
1answer
26 views

i want to get a list like ['lcd monitor','keyboard']. i am getting a object like [{'product name':'lcd'}]. please solve this issue [closed]

i am getting all the product names from the product table and putting it in a object.so from that object, i want a list of all the product names. please help me . my code is: material_obj = ...
0
votes
1answer
55 views

Error “TypeError: not all arguments converted during string formatting” MySQLdb

I am trying to update a MySQL table through Python 2.7. I have read and tried many solutions and keep getting an error message: TypeError: not all arguments converted during string formatting import ...
0
votes
1answer
50 views

For loop in python and use elements of list as variables for MYSQL query

two questions: So I have a list of filenames, each of which I would like to feed into a MYSQL query. The first questions is how to loop through the filelist and pass the elements (the filenames) as a ...
2
votes
0answers
114 views

Python/Django 1.5 DatabaseWrapper thread error

Throwing the following DatabaseError in Django 1.5.1 (and 1.5.0) and mysql when I runserver and attempt to load a local version of the web app: DatabaseError at / DatabaseWrapper objects ...
0
votes
0answers
30 views

Passing MYSQL results (several colums) to textfile using python and exlude L' and parenthesis

I am having trouble printing MySQL output (using Python 2.7) to a text file without the parenthesis and L's after numbers. I found a way to be able to accommodate a varying number of columns that I ...
0
votes
1answer
81 views

SQLAlchemy with Google Cloud SQL connect to development server

I am using SQLAlchemy 0.8 with Google App Engine and Cloud SQL. I would like to do a full integration test locally before deploying, but I cannot get SQLAlchemy to connect to my development MySQL ...
0
votes
0answers
39 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 ...
5
votes
1answer
1k views

cc1: error: unrecognized command line option “-Wno-null-conversion” within installing python-mysql on mac 10.7.5

This error broke my python-mysql installation on Mac 10.7.5. Here are the steps The installed python is 2.7.1, mysql is 64 bit for 5.6.11. The being installed python-mysql is 1.2.4, also tried ...
0
votes
0answers
107 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
100 views

A server error occurred. Please contact the administrator in Django while executing a stored procedure

Hi find the code executed below where i am facing an error "A server error occurred. Please contact the administrator in Django while executing a stored procedure". def Movementsout_Form(request): ...
0
votes
1answer
49 views

InvalidRequestError: Ambiguous column name '***' in result set, while the request is valid to mysqldb?

My code as following: s = DBSession() r = s.query(Food, FoodCategory).filter(Food.category_id == FoodCategory.id).first() This query raise the exception: sqlalchemy.exc.InvalidRequestError: ...
0
votes
2answers
86 views

Getting value from MySQL and loop over it with if

I have the following piece of code: ### Write the new userid to the sql database # Open database connection db = MySQLdb.connect("sql01.domain1.lan","webuserid","test","webuserid" ) # prepare a ...
0
votes
0answers
36 views

concurrent access to several mysql tables

I am using python.I want to access several mysql tables in one database using threads. class DBThread(threading.Thread): def __init__(self): Thread.__init__(self) def ...
0
votes
2answers
48 views

How to address a python list in MySQL query with “WHERE”?

I have the below code in which I want my MySQL query select those values in the 'name' column that are identical to the value in 'filenames' python list. I keep get an empty () as for the result. Can ...
1
vote
1answer
111 views

python models.py syncdb does not work

Second day on my journey to install Python 2.7.2 & Django 1.5 and create my first application, and now I can not sync models.py and update my database. Tools: Windows Vista, Putty SSH Location: ...
0
votes
1answer
38 views

How to make a dictionary within a dictionary in MySQLPython?

I have the below code: import MySQLdb import sys import pprint connect = MySQLdb.connect(host = "127.8.2.3", port=3377, user = "root", db="data1") with connect: cur = connect.cursor() ...
0
votes
0answers
127 views

Can't connect to MySQL with Django using portable Xampp

I need to test a Django application that uses mysql, so I installed portable-xampp and loaded the database, but I can't access it with django. It works when I'm using the remote database, but not ...
-1
votes
1answer
64 views

Getting results of a query with multiple rows as result into a single row

Is there anyway to get mysql query results as (id,result1,[result21,result22, result23]) I am trying to retrieve results where the third column is a timestamp and it corresponds to same ids. For ...
4
votes
1answer
118 views

Records getting deleted from Mysql table automatically

I have created a cronjob in Python. The purpose is to insert data into a table from another one based on certain conditions. There is more than 65000 record to be inserted. I have executed the ...
0
votes
1answer
84 views

How to insert data from .sql into Django table?

I'm trying to insert some initial data into a django table. I've tried sqlcustom and sqlall, but it doesn't seems to work... And followed the instructions and created a .sql file with some inserts ...
1
vote
1answer
374 views

Integrating Alembic with SQLAlchemy

I'm looking at a way to integrate Alembic with SQLAlchemy. What I need is a way so that Alembic detects any changes I make in models.py automatically and updates it in the MySQL database when I run ...
0
votes
1answer
103 views

SQL query embedded in python script - ERROR

I wanted a script that iterates through csv files in a folder and dump them into a MySQL database. I was able to dump one csv file into it.. But have troubles passing the file name in to the SQL ...
0
votes
1answer
259 views

Dumping CSV files to MySQL database using embedded query in python script

I have a SQL query which opens up a csv file and dumps it in a table of a database. I am trying to dump multiple files at once using a python script to iterate among the files. I tried embedding the ...
1
vote
1answer
106 views

Retrieving New Rows of MySQL Database without Restarting App in Python

I created a chat app in PHP using jQuery/AJAX. And now I'm trying to create a Python (2.7.3) app with GUI (Tkinter) that will be used to view and administer chats. I have a MySQL database that stores ...
1
vote
1answer
436 views

NameError: global name 'message' is not defined

I am new at python, currently I am working on a GPS tracker with that interacts with Google maps using an Arduino Uno. I am getting this error and it is not letting me run the .py script for my ...
0
votes
2answers
115 views

Error in installed MySQL-python-1.2.4b4 on fedora 17 [closed]

Hello I am trying to install python on my fedora 17 with python version 2.7.3 using these commands .... gunzip MySQL-python-1.2.4b4.tar.gz tar -xvf MySQL-python-1.2.4b4.tar $ cd ...
0
votes
1answer
93 views

The default sorting criteria of sqlalchemy?

Now I sort the data in the database by its attribute 1. If there is a tie of different items with same value of attribute 1, the data seems to be sorted by its id. However, I would like to break the ...
0
votes
0answers
47 views

Problems in Loading Demo Data (CDS Invenio)

I have installed CDS Invenio. Now the second task to perform is to configure it. I have made a script with all the commands that CDS invenio follows. Here is the script load_demo_data.sh sudo ...
0
votes
1answer
217 views

Can't import MySQLdb module in Python

I'm trying to use MySQL in Python. I have installed the MySQL adapter (MySQL-python-1.2.4b4.win32-py2.7) for Python, but when I try to import the MySQLdb module (import MySQLdb) with command prompt I ...
3
votes
2answers
104 views

MySQLDB query not returning all rows

I am trying to do a simple fetch using MySQLDB in Python. I have 2 tables(Accounts & Products). I have to look up Accounts table, get acc_id from it & query the Products table using it. The ...
1
vote
1answer
195 views

fatal error 'stdio.h' Python 2.7.3 on Mac OS X 10.7.5

I was told that this question is better suited here at Stack Overflow ( and not ServerFault ) So here it goes: I have this weird issue on my Mac OS X 10.7.5 ...
1
vote
2answers
142 views

string decode method error in python

I have a function like this: def convert_to_unicode(data): row = {} if data == None: return data try: for key, val in data.items(): if isinstance(val, str): ...
2
votes
2answers
99 views

Why does Django make unnecessary SQL queries in Change List View Page?

I have a Django model say , class Student(models.Model): prefix = models.CharField(max_length = 10, blank = True, null = True,) suffix = models.CharField(max_length = 10, ...
0
votes
1answer
43 views

python-mysql fetchone() type mismatch?

I have this piece of code that should return the value of the password from the db and match it with the password entered. I appended the characters on this line to match the formatting of the result ...
0
votes
1answer
125 views

MySql Database connection with python

I've got an issue trying to connect to a database with python. It compiles without error but it doesn't seem to do anything. I'm not sure if I'm instantiating the class incorrectly or what the issue ...
0
votes
1answer
107 views

How to create a Mapping Table in Django?

Consider i have 3 tables (User, Designation, Department). I have created Department table with Designation as manytomanyField(), so i know a map table Department_Designation is created and data will ...

1 2