Tagged Questions
The db-api tag has no wiki summary.
3
votes
2answers
347 views
Why connection in Python's DB-API does not have “begin” operation?
Working with cursors in mysql-python I used to call "BEGIN;", "COMMIT;", and "ROLLBACK;" explicitly as follows:
try:
cursor.execute("BEGIN;")
# some statements
cursor.execute("COMMIT;")
...
1
vote
1answer
58 views
time complexity to get auto incremented row id in mysql
I am a newbie at mysql and databases.
I have a simple question. I have created a table that has an integer type id column that is auto incremented. After each insert I get the last row inserted id (in ...
1
vote
1answer
182 views
How do you change the SQL isolation level from Python using MySQLdb?
The documentation I've run across researching this indicates that the way to do it for other databases is to use multiple statements in your query, a la:
>>> cursor = connection.cursor()
...
1
vote
1answer
123 views
DB-API with Python
I just spent the better half of my day trying to figure this one out so please for the love of god, help me.
I'm trying to insert some data into a local MySQL database by using MySQL Connector/Python ...
1
vote
3answers
617 views
Python pysqlite not accepting my qmark parameterization
I think I am being a bonehead, maybe not importing the right package, but when I do...
from pysqlite2 import dbapi2 as sqlite
import types
import re
import sys
...
def create_asgn(self):
...
0
votes
1answer
55 views
retrieving last 100 rows from a mysql database
I am a newbie at databases.
I have a table created with an autoincrement id as a column which is also the primary key. I want to know the most efficient way to retrieve the last 100 tuples from the ...