# File lib/dbd/sqlite/statement.rb, line 35 35: def bind_param(param, value, attributes=nil) 36: unless param.kind_of? Fixnum 37: raise DBI::InterfaceError, "Only numeric parameters are supported" 38: end 39: 40: @params[param-1] = value 41: 42: # FIXME what to do with attributes? are they important in SQLite? 43: end