GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Jifty::DBI::Handle(3) User Contributed Perl Documentation Jifty::DBI::Handle(3)

Jifty::DBI::Handle - Perl extension which is a generic DBI handle

  use Jifty::DBI::Handle;

  my $handle = Jifty::DBI::Handle->new();
  $handle->connect( driver => 'mysql',
                    database => 'dbname',
                    host => 'hostname',
                    user => 'dbuser',
                    password => 'dbpassword');
  # now $handle isa Jifty::DBI::Handle::mysql

This class provides a wrapper for DBI handles that can also perform a number of additional functions.

Generic constructor

Takes a paramhash and connects to your DBI datasource, with the keys "driver", "database", "host", "user" and "password".

If you created the handle with Jifty::DBI::Handle->new and there is a Jifty::DBI::Handle::(Driver) subclass for the driver you have chosen, the handle will be automatically "upgraded" into that subclass.

If there is an error, an exception will be thrown. If a connection has already been established and is still active, "undef" will be returned (which is not an error). Otherwise, if a new connection is made, a true value will be returned.

This private internal method turns a plain Jifty::DBI::Handle into one of the standard driver-specific subclasses.

Builds a dsn suitable for handing to DBI->connect.

Mandatory arguments:

driver
database

Optional arguments:

host
port
sid
requiressl
and anything else your DBD lets you pass in

Returns the dsn for this database connection.

Turns on the Database Handle's RaiseError attribute.
Turns on the Database Handle's PrintError attribute.

Takes a single argument, a message to log.

Currently prints that message to STDERR

Takes a boolean argument. If the boolean is true, it will log all SQL statements, as well as their invocation times and execution times.

Returns whether we're currently logging or not as a boolean

Used in instrumenting the SQL logging. You can use this to, for example, get a stack trace for each query (so you can find out where the query is being made). The name is required so that multiple hooks can be installed, and inspected, by name.

The coderef is run in scalar context and (currently) receives no arguments.

If you don't pass CODE in, then the coderef currently assigned under NAME is returned.

add an SQL statement to our query log

Clears out the SQL statement log.

Returns the current SQL statement log as an array of arrays. Each entry is a list of:

(Time, Statement, [Bindings], Duration, {HookResults})

Bindings is an arrayref of the values of any placeholders. HookResults is a hashref keyed by hook name.

Turns on the Database Handle's Autocommit attribute.

disconnect from your DBI datasource

Return the current DBI handle. If we're handed a parameter, make the database handle that.

Takes a table name and a set of key-value pairs in an array. splits the key value pairs, constructs an DELETE statement and performs the delete. Returns the row_id of this row.

Takes a table name and a set of key-value pairs in an array. splits the key value pairs, constructs an INSERT statement and performs the insert. Returns the row_id of this row.

Takes a hash with columns: "table", "column", "value", "primary_keys", and "is_sql_function". The first two should be obvious; "value" is where you set the new value you want the column to have. The "primary_keys" column should be the lvalue of Jifty::DBI::Record::PrimaryKeys(). Finally , "is_sql_function" is set when the Value is a SQL function. For example, you might have "value => 'PASSWORD(string)'", by setting "is_sql_function" to true, that string will be inserted into the query directly rather then as a binding.

Update column COLUMN of table table where the record id = RECORD_ID.

If IS_SQL is set, don't quote the NEW_VALUE.

Execute the SQL string specified in QUERY_STRING

Takes a SELECT query as a string, along with an array of BIND_VALUEs If the select succeeds, returns the first row as an array. Otherwise, returns a Class::ResturnValue object with the failure loaded up.

Returns a hash ref for the bind_param call to identify BLOB types used by the current database for a particular column type.

Returns the database's version.

If argument "short" is true returns short variant, in other case returns whatever database handle/driver returns. By default returns short version, e.g. 4.1.23 or "8.0-rc4".

Returns empty string on error or if database couldn't return version.

The base implementation uses a "SELECT VERSION()"

Returns 1 if the current database's searches are case sensitive by default Returns undef otherwise

Takes a column, operator and value. performs the magic necessary to make your database treat this clause as case insensitive.

Returns a column operator value triple.

Calls the database's "quote" in DBD method and returns the result. Additionally, turns on perl's utf8 flag if the returned content is UTF8.

Tells Jifty::DBI to begin a new SQL transaction. This will temporarily suspend Autocommit mode.

Emulates nested transactions, by keeping a transaction stack depth.

Tells Jifty::DBI to commit the current SQL transaction. This will turn Autocommit mode back on.

Tells Jifty::DBI to abort the current SQL transaction. This will turn Autocommit mode back on.

If this method is passed a true argument, stack depth is blown away and the outermost transaction is rolled back

Force the handle to rollback. Whether or not we're deep in nested transactions

Return the current depth of the faked nested transaction stack.

takes an SQL SELECT statement and massages it to return ROWS_PER_PAGE starting with FIRST_ROW;

Takes a paramhash of everything Jifty::DBI::Collection's "join" method takes, plus a parameter called "collection" that contains a ref to a Jifty::DBI::Collection object'.

This performs the join.

Takes a "collection" and "alias" in a hash and returns true if restrictions of the query allow NULLs in a table joined with the alias, otherwise returns false value which means that you can use normal join instead of left for the aliased table.

Works only for queries have been built with "join" in Jifty::DBI::Collection and "limit" in Jifty::DBI::Collection methods, for other cases return true value to avoid fault optimizations.

takes an incomplete SQL SELECT statement and massages it to return a DISTINCT result set.

takes an incomplete SQL SELECT statement and massages it to return a DISTINCT result set.

This returns the canonical true value for this database. For example, in SQLite it is 1 but in Postgres it is 't'.

The default is 1.

This returns the canonical false value for this database. For example, in SQLite it is 0 but in Postgres it is 'f'.

The default is 0.

rename_column

Rename a column in a table. Takes 'table', 'column' and new name in 'to'.

rename_table

Renames a table in the DB. Takes 'table' and new name of it in 'to'.

Returns a list of the drivers Jifty::DBI supports.

Returns a list of the available drivers based on the presence of "DBD::*" modules.

Returns a boolean indicating whether the provided driver is available.

When we get rid of the Jifty::DBI::Handle, we need to disconnect from the database

Setting "JIFTY_DBQUERY_CALLER" environment variable will make Jifty::DBI dump the caller for the SQL queries matching it. See also "DBI" about setting "DBI_PROFILE".

Jesse Vincent, <jesse@bestpractical.com>

perl(1), Jifty::DBI
2014-05-29 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.