The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
176 views

Escaping MySQL reserved words with Python dbapi

I am looking for a nice "pythonic" and "SQL-Injection-free" solution for a problem with reserved words in MySQL. I have the following code: alter_sql = 'ALTER TABLE %s ADD COLUMN %s TEXT' ...
2
votes
2answers
335 views

Zope 3 + windows + MySQL - How to install ZMySQLDA on windows?

I'm looking for instructions 'how to install ZMySQLDA on windows' I have installed python 2.4, Zope 3, and I have downloaded The Zope MySQL Database Adapter (ZMySQLDA), available from ...
0
votes
1answer
242 views

Find databasetype ( SQlite, Mysql, PostgreSQL ) from dbapi in python

I need to find out what kind of database I am working against based on data from an dbapi cursor instance. Have not found any clues on how to do this in the dbapi docs. Can it be done?
5
votes
1answer
437 views

MySQL python DBAPI. How to get a dictionary instead of a tuple?

Python DB API returns a list of tuples when fetchall is invoked on an executed cursor. If you work with the _mysql module, fetch_row has a how parameter that allows to get a dictionary instead of a ...
1
vote
2answers
863 views

Using Python quick insert many columns into Sqlite\Mysql

If Newdata is list of x columns, How would get the number unique columns--number of members of first tuple. (Len is not important.) Change the number of "?" to match columns and insert using the ...
1
vote
1answer
308 views

New project Python 3x PostgreSQL 9x and pg8000 1x DBAPI?

I'm starting some new projects and want to know if pg8000 is considered a good choice for a production project? Obviously Python and PostgreSQL are mature products, but I'm concerned about pg8000 ...
6
votes
4answers
2k views

Set database connection timeout in Python

I'm creating a RESTful API which needs to access the database. I'm using Restish, Oracle, and SQLAlchemy. However, I'll try to frame my question as generically as possible, without taking Restish or ...
0
votes
2answers
483 views

Python DBAPI time out for connections?

I was attempting to test for connection failure, and unfortunately it's not failing if the ip address of the host is fire walled. This is the code: def get_connection(self, conn_data): rtu, ...
7
votes
7answers
4k views

Escape SQL “LIKE” value for Postgres with psycopg2

Does psycopg2 have a function for escaping the value of a LIKE operand for Postgres? For example I may want to match strings that start with the string "20% of all", so I want to write something like ...
9
votes
3answers
4k views

how to safely generate a SQL LIKE statement using python db-api

I am trying to assemble the following SQL statement using python's db-api: SELECT x FROM myTable WHERE x LIKE 'BEGINNING_OF_STRING%'; where BEGINNING_OF_STRING should be a python var to be safely ...
6
votes
2answers
1k views

How to specify psycopg2 parameter for an array for timestamps (datetimes)

I'd like to run a PostgreSQL query in Python using psycopg2, which filters by a column of type timestamp without timezone. I have a long list of allowed values for the timestamp (rather than a range) ...
0
votes
2answers
158 views

MySQL driver issues with INFORMATION_SCHEMA?

I'm trying out the Concurrence framework for Stackless Python. It includes a MySQL driver and when running some code that previously ran fine with MySQLdb it fails. What I am doing: Connecting to ...
3
votes
2answers
791 views

sqlite3 and cursor.description

When using the sqlite3 module in python, all elements of cursor.description except the column names are set to None, so this tuple cannot be used to find the column types for a query result (unlike ...
8
votes
4answers
3k views

Parameterized queries with psycopg2 / Python DB-API and PostgreSQL

What's the best way to make psycopg2 pass parameterized queries to PostgreSQL? I don't want to write my own escpaing mechanisms or adapters and the psycopg2 source code and examples are difficult to ...