Class: Webhookdb::DBAdapter::Connection

Inherits:
Object
  • Object
show all
Defined in:
lib/webhookdb/db_adapter.rb

Overview

Abstract class representing a DB connection. Ususually this is a Sequel connection, but in could just be a stored URL (like for Snowflake we have to call snowsql each time).

Instance Method Summary collapse

Instance Method Details

#execute(sql) ⇒ Object

Raises:

  • (NotImplementedError)


109
110
111
# File 'lib/webhookdb/db_adapter.rb', line 109

def execute(sql)
  raise NotImplementedError
end