|
__init__(self,
dbname="tmp",
directory="/tmp",
encoding="iso-8859-1")
The default values will create a database called tmp in your /tmp
directory.
|
|
_from_params(params)
|
|
backend_encoding(self)
|
|
insert(self,
dbobj,
dont_select=False)
The gadfly backend does not provide a mechanism to create unique
keys for new rows.
|
|
select_one(self,
dbclass,
*clauses)
Gadfly doesn't support the LIMIT clause.
|
|
select_after_insert(self,
dbobj)
The gadfly backend neither supports default values for columns not
owns a mechanism to provide unique keys for new rows.
|
|
select_after_insert_where(self,
dbobj)
See select_after_insert() above.
|
|
Inherited from datasource.datasource_base:
close,
commit,
count,
cursor,
delete_by_primary_key,
execute,
flush_updates,
join_select,
primary_key_where,
query_one,
rollback,
run_select,
select,
select_by_primary_key,
select_for_update,
update,
update_cursor
Inherited from sql.datasource:
escape_string,
identifyer_quotes,
string_quotes
|