Class: SQLite::ResultSet

Inherits:
Object
  • Object
show all
Defined in:
lib/og/store/sqlite2.rb

Overview

– Customize the standard Sqlite2 resultset to make more compatible with Og. ++

Instance Method Summary collapse

Instance Method Details

#each_rowObject



20
21
22
23
24
# File 'lib/og/store/sqlite2.rb', line 20

def each_row
  each do |row|
    yield(row, 0)
  end
end

#first_valueObject



26
27
28
29
30
# File 'lib/og/store/sqlite2.rb', line 26

def first_value
  val = self.next[0]
  close
  return val
end