class

Marten::DB::Connection::PostgreSQL

Inherits Marten::DB::Connection::Base / Reference / Object

Instance methods

bulk_batch_size(records_count : Int32, values_count : Int32) : Int32

Returns the batch size to use when inserting multiple rows in a specific table.

Source
bulk_insert(table_name : String, values : Array(Hash(String, ::DB::Any)), pk_column_to_fetch : String | Nil = nil) : Array(::DB::Any) | Nil

Allows to insert multiple rows in a specific table and returns the primary key values for the inserted rows.

This method allow inserting individual rows defined in values in the table_name table. When pk_column_to_fetch is specified, the primary key values for the inserted rows will be returned. Note that this method can return nil if the underlying database does not support returning primary key values for bulk inserts.

Source
distinct_clause_for(columns : Array(String)) : String

Returns a distinct clause to remove duplicates from a query's results.

If column names are specified, only these specific columns will be checked to identify duplicates.

Source
insert(table_name : String, values : Hash(String, ::DB::Any), pk_column_to_fetch : String | Nil = nil) : ::DB::Any

Allows to insert a new row in a specific table.

Source
left_operand_for(id : String, predicate) : String

Returns the left operand to use for specific query predicate.

Most of the time the initial ID will be left intact but depending on the connection implementation and the considered predicate type (eg. "istartswith"), specific SQL functions could be applied on the column ID.

Source
limit_value(value : Int | Nil) : Int32 | Int64 | Nil | UInt32 | UInt64

Returns a compatible value to use in the context of a LIMIT statement for the database at hand.

Source
max_name_size

Returns the maximum size for table names, column names or index / constraint names.

Source
operator_for(predicate) : String

Returns the operator to use for a specific query predicate.

Source
parameter_id_for_ordered_argument(number : Int) : String

Returns the parameterized identifier for an ordered argument.

This method takes the number of the argument which is aimed to be part of an array of ordered SQL arguments.

Source
quote_char

Returns the quote character to use to quote table names, columns, etc.

Source
scheme

Returns the scheme to consider for the underlying database backend.

Source
supports_logical_xor?

Returns a boolean indicating whether the database supports the logical XOR operator.

Source
update(table_name : String, values : Hash(String, ::DB::Any), pk_column_name : String, pk_value : ::DB::Any) : Nil

Allows to update an existing row in a specific table.

Source