Class: SQLite3::ResultSet

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

Overview

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

Instance Method Summary collapse

Instance Method Details

#each_rowObject



21
22
23
24
25
# File 'lib/og/store/sqlite.rb', line 21

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

#first_valueObject



27
28
29
30
31
# File 'lib/og/store/sqlite.rb', line 27

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