Lines Matching full:self
33 def __init__(self,db, debug=0):
34 odb.Database.__init__(self, db, debug=debug)
35 self.SQLError = sqlite.Error
37 def escape(self,str):
48 def listTables(self, cursor=None):
49 if cursor is None: cursor = self.defaultCursor()
56 def listIndices(self, cursor=None):
57 if cursor is None: cursor = self.defaultCursor()
64 def listFieldsDict(self, table_name, cursor=None):
65 if cursor is None: cursor = self.defaultCursor()
76 def _tableCreateStatement(self, table_name, cursor=None):
77 if cursor is None: cursor = self.defaultCursor()
86 def alterTableToMatch(self, table):
100 oldcols = self.listFieldsDict(tableName)
136 cur = self.defaultCursor()