|
NAMEDBD::SQLite2 - Self Contained RDBMS in a DBI Driver (sqlite 2.x)SYNOPSISuse DBI; my $dbh = DBI->connect("dbi:SQLite2:dbname=dbfile","",""); DESCRIPTIONSQLite is a public domain RDBMS database engine that you can find at http://www.sqlite.org/.Rather than ask you to install SQLite first, because SQLite is public domain, DBD::SQLite2 includes the entire thing in the distribution. So in order to get a fast transaction capable RDBMS working for your perl project you simply have to install this module, and nothing else. For real work please use the updated DBD::SQLite driver with the up-to-date sqlite3 backend. SQLite2 supports the following features:
There's lots more to it, so please refer to the docs on the SQLite web page, listed above, for SQL details. Also refer to DBI for details on how to use DBI itself. CONFORMANCE WITH DBI SPECIFICATIONThe API works like every DBI module does. Please see DBI for more details about core features.Currently many statement attributes are not implemented or are limited by the typeless nature of the SQLite2 database. DRIVER PRIVATE ATTRIBUTESDatabase Handle Attributes
DRIVER PRIVATE METHODS$dbh->func('last_insert_rowid')This method returns the last inserted rowid. If you specify an INTEGER PRIMARY KEY as the first column in your table, that is the column that is returned. Otherwise, it is the hidden ROWID column. See the sqlite docs for details.$dbh->func( $name, $argc, $func_ref, "create_function" )This method will register a new function which will be useable in SQL query. The method's parameters are:
For example, here is how to define a now() function which returns the current number of seconds since the epoch: $dbh->func( 'now', 0, sub { return time }, 'create_function' ); After this, it could be use from SQL as: INSERT INTO mytable ( now() ); $dbh->func( $name, $argc, $pkg, 'create_aggregate' )This method will register a new aggregate function which can then used from SQL. The method's parameters are:
The aggregator interface consists of defining three methods:
Here is a simple aggregate function which returns the variance (example adapted from pysqlite): package variance; sub new { bless [], shift; } sub step { my ( $self, $value ) = @_; push @$self, $value; } sub finalize { my $self = $_[0]; my $n = @$self; # Variance is NULL unless there is more than one row return undef unless $n || $n == 1; my $mu = 0; foreach my $v ( @$self ) { $mu += $v; } $mu /= $n; my $sigma = 0; foreach my $v ( @$self ) { $sigma += ($x - $mu)**2; } $sigma = $sigma / ($n - 1); return $sigma; } $dbh->func( "variance", 1, 'variance', "create_aggregate" ); The aggregate function can then be used as: SELECT group_name, variance(score) FROM results GROUP BY group_name; NOTESTo access the database from the command line, try using dbish which comes with the DBI module. Just type:dbish dbi:SQLite:foo.db On the command line to access the file foo.db. Alternatively you can install SQLite from the link above without conflicting with DBD::SQLite2 and use the supplied "sqlite" command line tool. PERFORMANCESQLite is fast, very fast. I recently processed my 72MB log file with it, inserting the data (400,000+ rows) by using transactions and only committing every 1000 rows (otherwise the insertion is quite slow), and then performing queries on the data.Queries like count(*) and avg(bytes) took fractions of a second to return, but what surprised me most of all was: SELECT url, count(*) as count FROM access_log GROUP BY url ORDER BY count desc LIMIT 20 To discover the top 20 hit URLs on the site (http://axkit.org), and it returned within 2 seconds. I'm seriously considering switching my log analysis code to use this little speed demon! Oh yeah, and that was with no indexes on the table, on a 400MHz PIII. For best performance be sure to tune your hdparm settings if you are using linux. Also you might want to set: PRAGMA default_synchronous = OFF Which will prevent sqlite from doing fsync's when writing (which slows down non-transactional writes significantly) at the expense of some peace of mind. Also try playing with the cache_size pragma. BUGSLikely to be many, please use http://rt.cpan.org/ for reporting bugs.AUTHORMatt Sergeant, matt@sergeant.orgPerl extension functions contributed by Francis J. Lacoste <flacoste@logreport.org> and Wolfgang Sourdeau <wolfgang@logreport.org>. Maintenance help by Reini Urban <rurban@cpan.org> LICENSEThis module is available under the same licences as perl, the Artistic license and the GPL.SEE ALSODBD::SQLite, DBI.
Visit the GSP FreeBSD Man Page Interface. |