class Coopy::SqlDatabase
Public Instance Methods
begin(query,args = nil,order = nil)
click to toggle source
# 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)
click to toggle source
# File lib/lib/coopy/sql_database.rb, line 10 def beginRow(name,row,order = nil) puts "Abstract SqlDatabase.beginRow called" end
end()
click to toggle source
# File lib/lib/coopy/sql_database.rb, line 13 def end() puts "Abstract SqlDatabase.end called" end
get(index)
click to toggle source
# File lib/lib/coopy/sql_database.rb, line 12 def get(index) puts "Abstract SqlDatabase.get called" end
getColumns(name)
click to toggle source
# File lib/lib/coopy/sql_database.rb, line 6 def getColumns(name) puts "Abstract SqlDatabase.getColumns called" end
getHelper()
click to toggle source
# File lib/lib/coopy/sql_database.rb, line 16 def getHelper() puts "Abstract SqlDatabase.getHelper called" end
getNameForAttachment()
click to toggle source
# File lib/lib/coopy/sql_database.rb, line 17 def getNameForAttachment() puts "Abstract SqlDatabase.getNameForAttachment called" end
getQuotedColumnName(name)
click to toggle source
# File lib/lib/coopy/sql_database.rb, line 8 def getQuotedColumnName(name) puts "Abstract SqlDatabase.getQuotedColumnName called" end
getQuotedTableName(name)
click to toggle source
# File lib/lib/coopy/sql_database.rb, line 7 def getQuotedTableName(name) puts "Abstract SqlDatabase.getQuotedTableName called" end
read()
click to toggle source
# File lib/lib/coopy/sql_database.rb, line 11 def read() puts "Abstract SqlDatabase.read called" end
rowid()
click to toggle source
# File lib/lib/coopy/sql_database.rb, line 15 def rowid() puts "Abstract SqlDatabase.rowid called" end
width()
click to toggle source
# File lib/lib/coopy/sql_database.rb, line 14 def width() puts "Abstract SqlDatabase.width called" end