Tagged Questions
The dbapi tag has no wiki summary.
7
votes
3answers
1k 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
3answers
811 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 ...
5
votes
1answer
217 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 ...
5
votes
4answers
2k 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 ...
3
votes
5answers
2k 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 ...
3
votes
2answers
661 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) ...
3
votes
2answers
435 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 ...
2
votes
2answers
162 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 ...
1
vote
1answer
189 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 ...
0
votes
1answer
119 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?
0
votes
2answers
355 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 ...
0
votes
2answers
172 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, ...
0
votes
2answers
111 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 ...