Class: Coopy::SqlHelper

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

Instance Method Summary collapse

Instance Method Details

#alterColumns(db, name, columns) ⇒ Object



13
# 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) ⇒ Object



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

def attach(db,tag,resource_name) puts "Abstract SqlHelper.attach called" end

#countRows(db, name) ⇒ Object



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

def countRows(db,name) puts "Abstract SqlHelper.countRows called" end

#delete(db, name, conds) ⇒ Object



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

def delete(db,name,conds) puts "Abstract SqlHelper.delete called" end

#getRowIDs(db, name) ⇒ Object



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

def getRowIDs(db,name) puts "Abstract SqlHelper.getRowIDs called" end

#getTableNames(db) ⇒ Object



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

def getTableNames(db) puts "Abstract SqlHelper.getTableNames called" end

#insert(db, name, vals) ⇒ Object



9
# 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) ⇒ Object



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

def update(db,name,conds,vals) puts "Abstract SqlHelper.update called" end