Class: Coopy::SqlDatabase

Inherits:
Object
  • Object
show all
Defined in:
lib/lib/coopy/sql_database.rb

Instance Method Summary collapse

Instance Method Details

#begin(query, args = nil, order = nil) ⇒ Object



9
# File 'lib/lib/coopy/sql_database.rb', line 9

def begin(query,args = nil,order = nil) puts "Abstract SqlDatabase.begin called" end

#beginRow(name, row, order = nil) ⇒ Object



10
# File 'lib/lib/coopy/sql_database.rb', line 10

def beginRow(name,row,order = nil) puts "Abstract SqlDatabase.beginRow called" end

#endObject



13
# File 'lib/lib/coopy/sql_database.rb', line 13

def end() puts "Abstract SqlDatabase.end called" end

#get(index) ⇒ Object



12
# File 'lib/lib/coopy/sql_database.rb', line 12

def get(index) puts "Abstract SqlDatabase.get called" end

#getColumns(name) ⇒ Object



6
# File 'lib/lib/coopy/sql_database.rb', line 6

def getColumns(name) puts "Abstract SqlDatabase.getColumns called" end

#getHelperObject



16
# File 'lib/lib/coopy/sql_database.rb', line 16

def getHelper() puts "Abstract SqlDatabase.getHelper called" end

#getNameForAttachmentObject



17
# File 'lib/lib/coopy/sql_database.rb', line 17

def getNameForAttachment() puts "Abstract SqlDatabase.getNameForAttachment called" end

#getQuotedColumnName(name) ⇒ Object



8
# File 'lib/lib/coopy/sql_database.rb', line 8

def getQuotedColumnName(name) puts "Abstract SqlDatabase.getQuotedColumnName called" end

#getQuotedTableName(name) ⇒ Object



7
# File 'lib/lib/coopy/sql_database.rb', line 7

def getQuotedTableName(name) puts "Abstract SqlDatabase.getQuotedTableName called" end

#readObject



11
# File 'lib/lib/coopy/sql_database.rb', line 11

def read() puts "Abstract SqlDatabase.read called" end

#rowidObject



15
# File 'lib/lib/coopy/sql_database.rb', line 15

def rowid() puts "Abstract SqlDatabase.rowid called" end

#widthObject



14
# File 'lib/lib/coopy/sql_database.rb', line 14

def width() puts "Abstract SqlDatabase.width called" end