class SQLite3::Value
Attributes
Public Class Methods
Source
# File lib/sqlite3/value.rb, line 7 def initialize(db, handle) @driver = db.driver @handle = handle end
Public Instance Methods
Source
# File lib/sqlite3/value.rb, line 20 def length(utf16 = false) if utf16 @driver.value_bytes16(@handle) else @driver.value_bytes(@handle) end end
Source
# File lib/sqlite3/value.rb, line 36 def to_int64 @driver.value_int64(@handle) end
Source
# File lib/sqlite3/value.rb, line 40 def to_s(utf16 = false) @driver.value_text(@handle, utf16) end
Source
# File lib/sqlite3/value.rb, line 44 def type case @driver.value_type(@handle) when Constants::ColumnType::INTEGER then :int when Constants::ColumnType::FLOAT then :float when Constants::ColumnType::TEXT then :text when Constants::ColumnType::BLOB then :blob when Constants::ColumnType::NULL then :null end end