rdkit.Dbase.DbConnection module¶
defines class _DbConnect_, for abstracting connections to databases
-
class
rdkit.Dbase.DbConnection.DbConnect(dbName='', tableName='', user='sysdba', password='masterkey')¶ Bases:
objectThis class is intended to abstract away many of the details of interacting with databases.
It includes some GUI functionality
-
AddColumn(tableName, colName, colType)¶ adds a column to a table
Arguments
- tableName: the name of the table to manipulate
- colName: name of the column to insert
- colType: the type of the column to add
-
AddTable(tableName, colString)¶ adds a table to the database
Arguments
- tableName: the name of the table to add
- colString: a string containing column defintions
Notes
- if a table named _tableName_ already exists, it will be dropped
- the sqlQuery for addition is: “create table %(tableName) (%(colString))”
-
Commit()¶ commits the current transaction
-
GetColumnNames(table='', join='', what='*', where='', **kwargs)¶ gets a list of columns available in the current table
Returns
a list of column namesNotes
- this uses _DbInfo.GetColumnNames_
-
GetColumnNamesAndTypes(table='', join='', what='*', where='', **kwargs)¶ gets a list of columns available in the current table along with their types
Returns
a list of 2-tuples containing:
- column name
- column type
Notes
- this uses _DbInfo.GetColumnNamesAndTypes_
-
GetColumns(fields, table='', join='', **kwargs)¶ gets a set of data from a table
Arguments
- fields: a string with the names of the fields to be extracted, this should be a comma delimited list
Returns
a list of the dataNotes
- this uses _DbUtils.GetColumns_
-
GetCursor()¶ returns a cursor for direct manipulation of the DB only one cursor is available
-
GetData(table=None, fields='*', where='', removeDups=-1, join='', transform=None, randomAccess=1, **kwargs)¶ a more flexible method to get a set of data from a table
Arguments
- table: (optional) the table to use
- fields: a string with the names of the fields to be extracted, this should be a comma delimited list
- where: the SQL where clause to be used with the DB query
- removeDups: indicates which column should be used to recognize duplicates in the data. -1 for no duplicate removal.
Returns
a list of the dataNotes
- this uses _DbUtils.GetData_
-
GetDataCount(table=None, where='', join='', **kwargs)¶ returns a count of the number of results a query will return
Arguments
- table: (optional) the table to use
- where: the SQL where clause to be used with the DB query
- join: the SQL join clause to be used with the DB query
Returns
an intNotes
- this uses _DbUtils.GetData_
-
GetTableNames(includeViews=0)¶ gets a list of tables available in a database
Arguments
- includeViews: if this is non-null, the views in the db will also be returned
Returns
a list of table namesNotes
- this uses _DbInfo.GetTableNames_
-
InsertColumnData(tableName, columnName, value, where)¶ inserts data into a particular column of the table
Arguments
- tableName: the name of the table to manipulate
- columnName: name of the column to update
- value: the value to insert
- where: a query yielding the row where the data should be inserted
-
InsertData(tableName, vals)¶ inserts data into a table
Arguments
- tableName: the name of the table to manipulate
- vals: a sequence with the values to be inserted
-
KillCursor()¶ closes the cursor
-
-
exception
rdkit.Dbase.DbConnection.DbError¶ Bases:
RuntimeError