NAME
Rose::DB::SQLite - SQLite driver class for Rose::DB.
SYNOPSIS
use Rose::DB;
Rose::DB->register_db(
domain => 'development',
type => 'main',
driver => 'sqlite',
database => '/path/to/some/file.db',
);
Rose::DB->default_domain('development');
Rose::DB->default_type('main');
...
# Set max length of varchar columns used to emulate an array data type
Rose::DB::SQLite->max_array_characters(128);
$db = Rose::DB->new; # $db is really a Rose::DB::SQLite object
...
DESCRIPTION
This is the subclass that Rose::DB blesses an object into when the driver
is "sqlite". This mapping of drivers to class names is configurable. See the documentation for Rose::DB's new()
and driver_class()
methods for more information.
Using this class directly is not recommended. Instead, use Rose::DB and let it bless objects into the appropriate class for you, according to its driver_class()
mappings.
This class supports SQLite version 3 only. See the SQLite web site for more information on the major vrsions of SQLite:
This class inherits from Rose::DB. Only the methods that are new or have different behaviors are documented here. See the Rose::DB documentation for information on the inherited methods.
DATA TYPES
SQLite doesn't care what value you pass for a given column, regardless of that column's nominal data type. Rose::DB does care, however. The following data type formats are enforced by Rose::DB::SQLite's parse_* and format_* functions.
Type Format
--------- ------------------------------
DATE YYYY-MM-DD
DATETIME YYYY-MM-DD HH:MM::SS
TIMESTAMP YYYY-MM-DD HH:MM::SS.NNNNNNNNN
CLASS METHODS
- max_array_characters [INT]
-
Get or set the maximum length of varchar columns used to emulate an array data type. The default value is 255.
SQLite does not have a native "ARRAY" data type, but it can be emulated using a "VARCHAR" column and a specially formatted string. The formatting and parsing of this string is handled by the
format_array()
andparse_array()
object methods. The maximum length limit is honored by theformat_array()
object method.
OBJECT METHODS
- auto_create [BOOL]
-
Get or set a boolean value indicating whether or not a new SQLite database should be created if it does not already exist. Defaults to true.
If false, and if the specified database does not exist, then a fatal error will occur when an attempt is made to connect to the database.
Value Parsing and Formatting
- format_array ARRAYREF | LIST
-
Given a reference to an array or a list of values, return a specially formatted string. Undef is returned if ARRAYREF points to an empty array or if LIST is not passed. The array or list must not contain undefined values.
If the resulting string is longer than
max_array_characters()
, a fatal error will occur. - parse_array STRING | LIST | ARRAYREF
-
Parse STRING and return a reference to an array. STRING should be formatted according to the SQLite array data type emulation format returned by
format_array()
. Undef is returned if STRING is undefined.If a LIST of more than one item is passed, a reference to an array containing the values in LIST is returned.
If a an ARRAYREF is passed, it is returned as-is.
- validate_date_keyword STRING
-
Returns true if STRING is a valid keyword for the "date" data type. Any strings that looks like a function call (matches /^\w+\(.*\)$/) is considered a valid date keyword.
- validate_datetime_keyword STRING
-
Returns true if STRING is a valid keyword for the "datetime" data type, false otherwise. Any strings that looks like a function call (matches /^\w+\(.*\)$/) is considered a valid datetime keyword.
- validate_timestamp_keyword STRING
-
Returns true if STRING is a valid keyword for the "timestamp" data type, false otherwise. Any strings that looks like a function call (matches /^\w+\(.*\)$/) is considered a valid timestamp keyword.
AUTHOR
John C. Siracusa (siracusa@mindspring.com)
COPYRIGHT
Copyright (c) 2005 by John C. Siracusa. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.