|
property
Emulate PyProperty_Type() in Objects/descrobject.c
|
|
_DbfRecord
Provides routines to extract and save data within the fields of a
dbf record.
|
|
_DbfMemo
Provides access to memo fields as dictionaries must override _init,
_get_memo, and _put_memo to store memo contents to disk
|
|
_Db3Memo
Provides access to memo fields as dictionaries must override _init,
_get_memo, and _put_memo to store memo contents to disk
|
|
_VfpMemo
Provides access to memo fields as dictionaries must override _init,
_get_memo, and _put_memo to store memo contents to disk
|
|
DbfTable
Provides a framework for dbf style tables.
|
|
Db3Table
Provides an interface for working with dBase III tables.
|
|
FpTable
Provides an interface for working with FoxPro 2 tables
|
|
VfpTable
Provides an interface for working with Visual FoxPro 6 tables
|
|
List
list of Dbf records, with set-like behavior
|
|
DbfCsv
csv format for exporting tables
|
|
Index
|
|
_Db4Table
|
|
sql_select(records,
chosen_fields,
condition,
field_names) |
source code
|
|
|
sql_update(records,
command,
condition,
field_names) |
source code
|
|
|
sql_delete(records,
dead_fields,
condition,
field_names) |
source code
|
|
|
sql_recall(records,
all_fields,
condition,
field_names) |
source code
|
|
|
sql_add(records,
new_fields,
condition,
field_names) |
source code
|
|
|
sql_drop(records,
dead_fields,
condition,
field_names) |
source code
|
|
|
sql_pack(records,
command,
condition,
field_names) |
source code
|
|
|
sql_resize(records,
fieldname_newsize,
condition,
field_names) |
source code
|
|
|
sql_criteria(records,
criteria)
creates a function matching the sql criteria |
source code
|
|
|
sql_cmd(command,
field_names)
creates a function matching to apply command to each record in
records |
source code
|
|
|
sql(records,
command)
recognized sql commands are SELECT, UPDATE | REPLACE, DELETE, RECALL,
ADD, DROP |
source code
|
|
|
|
|
_normalize_tuples(tuples,
length,
filler)
ensures each tuple is the same length, using filler[-missing] for the
gaps |
source code
|
|
|
|
|
ascii(new_setting=None)
get/set return_ascii setting |
source code
|
|
|
codepage(cp=None)
get/set default codepage for any new tables |
source code
|
|
|
encoding(cp=None)
get/set default encoding for non-unicode strings passed into a table |
source code
|
|