class Coopy::SqlHelper
Public Instance Methods
alterColumns(db,name,columns)
click to toggle source
# File lib/lib/coopy/sql_helper.rb, line 13 def alterColumns(db,name,columns) puts "Abstract SqlHelper.alterColumns called" end
attach(db,tag,resource_name)
click to toggle source
# File lib/lib/coopy/sql_helper.rb, line 12 def attach(db,tag,resource_name) puts "Abstract SqlHelper.attach called" end
countRows(db,name)
click to toggle source
# File lib/lib/coopy/sql_helper.rb, line 7 def countRows(db,name) puts "Abstract SqlHelper.countRows called" end
delete(db,name,conds)
click to toggle source
# File lib/lib/coopy/sql_helper.rb, line 10 def delete(db,name,conds) puts "Abstract SqlHelper.delete called" end
getRowIDs(db,name)
click to toggle source
# File lib/lib/coopy/sql_helper.rb, line 8 def getRowIDs(db,name) puts "Abstract SqlHelper.getRowIDs called" end
getTableNames(db)
click to toggle source
# File lib/lib/coopy/sql_helper.rb, line 6 def getTableNames(db) puts "Abstract SqlHelper.getTableNames called" end
insert(db,name,vals)
click to toggle source
# File lib/lib/coopy/sql_helper.rb, line 9 def insert(db,name,vals) puts "Abstract SqlHelper.insert called" end
update(db,name,conds,vals)
click to toggle source
# File lib/lib/coopy/sql_helper.rb, line 11 def update(db,name,conds,vals) puts "Abstract SqlHelper.update called" end