Class ActiveRecord::ConnectionAdapters::FrontBaseAdapter
In: lib/active_record/connection_adapters/frontbase_adapter.rb
Parent: AbstractAdapter

Methods

External Aliases

update -> delete

Public Class methods

Public Instance methods

CONNECTION MANAGEMENT ====================================

Adds a new column to the named table. See TableDefinition#column for details of the options you can use.

Close this connection

Drops a table from the database.

Returns the next sequence value from a sequence generator. Not generally called directly; used by ActiveRecord to get the next primary key value when inserting a new database record (see prefetch_primary_key?).

Quotes the column value to help prevent SQL injection attacks.

Quotes a string, escaping any ’ (single quote) characters.

Removes the column from the table definition.

Examples
 remove_column(:suppliers, :qualification)

Set the sequence to the max value of the table‘s column.

[Validate]