Package sqlite3 :: Class Connection
[hide private]
[frames] | no frames]

type Connection

object --+
         |
        Connection
Known Subclasses:

SQLite database connection object.

Instance Methods [hide private]
 
__call__(x, ...)
x(...)
 
__init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
a new object with type S, a subtype of T
__new__(T, S, ...)
 
close(...)
Closes the connection.
 
commit(...)
Commit the current transaction.
 
create_aggregate(...)
Creates a new aggregate.
 
create_collation(...)
Creates a collation function.
 
create_function(...)
Creates a new function.
 
cursor(...)
Return a cursor for the connection.
 
execute(...)
Executes a SQL statement.
 
executemany(...)
Repeatedly executes a SQL statement.
 
executescript(...)
Executes a multiple SQL statements at once.
 
interrupt(...)
Abort any pending database operation.
 
rollback(...)
Roll back the current transaction.
 
set_authorizer(...)
Sets authorizer callback.
Properties [hide private]
  DataError
  DatabaseError
  Error
  IntegrityError
  InterfaceError
  InternalError
  NotSupportedError
  OperationalError
  ProgrammingError
  Warning
  isolation_level
  row_factory
  text_factory
  total_changes
Method Details [hide private]

__init__(...)
(Constructor)

 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__

__new__(T, S, ...)

 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__

create_aggregate(...)

 

Creates a new aggregate. Non-standard.

create_collation(...)

 

Creates a collation function. Non-standard.

create_function(...)

 

Creates a new function. Non-standard.

execute(...)

 

Executes a SQL statement. Non-standard.

executemany(...)

 

Repeatedly executes a SQL statement. Non-standard.

executescript(...)

 

Executes a multiple SQL statements at once. Non-standard.

interrupt(...)

 

Abort any pending database operation. Non-standard.

set_authorizer(...)

 

Sets authorizer callback. Non-standard.