Questions about how to use the Python Database API Specification 2.0 -- PEP 249.
I have a sql statement that returns no hits. For example, 'select * from TAB where 1 = 2'. I want to check …
python resultset python-db-apiI have a JSON object in Python. I am Using Python DB-API and SimpleJson. I am trying to insert the …
python mysql json python-db-apiI just had a discussion today with some coworkers about python's db-api fetchone vs fetchmany vs fetchall. I'm sure the …
python mysql python-db-apiIs there an elegant way of getting a single result from an SQLite SELECT query when using Python? for example: …
python sql sqlite python-db-apiI'm trying to port some code to Python that uses sqlite databases, and I'm trying to get transactions to work, …
python-2.7 sqlite python-db-apiI am trying to assemble the following SQL statement using python's db-api: SELECT x FROM myTable WHERE x LIKE 'BEGINNING_…
python sql sql-like python-db-apiOver a year ago someone asked this question: Execute .sql files that are used to run in SQL Management Studio …
python sql sql-server pyodbc python-db-apiDoes psycopg2 have a function for escaping the value of a LIKE operand for Postgres? For example I may want …
python postgresql psycopg2 python-db-apiI'm creating a RESTful API which needs to access the database. I'm using Restish, Oracle, and SQLAlchemy. However, I'll try …
python database oracle cx-oracle python-db-apiI am confused about why python needs cursor object. I know jdbc and there the database connection is quite intuitive …
python python-db-api