class SQLite3::Exception
Attributes
A convenience for accessing the error code for this exception.
If the error is associated with a SQL query, this is the query
If the error is associated with a particular offset in a SQL query, this is the non-negative offset. If the offset is not available, this will be -1.
Public Instance Methods
Source
# File lib/sqlite3/errors.rb, line 15 def message [super, sql_error].compact.join(":\n") end
Calls superclass method