perldoc > DBD::SQLite::VirtualTable

📘 NAME

DBD::SQLite::VirtualTable — SQLite virtual tables implemented in Perl

🚀 Quick Reference

Use CaseCommandDescription
Register a virtual table module$dbh->sqlite_create_module(mod_name => 'DBD::SQLite::VirtualTable::Subclass')Registers a Perl class as a virtual table module for SQLite
Create a virtual table$dbh->do("CREATE VIRTUAL TABLE vtbl USING mod_name(arg1, arg2, ...)")Creates a virtual table instance using the registered module
Query the virtual table$dbh->prepare("SELECT * FROM vtbl WHERE ...")Use standard SQL to query the virtual table
Implement a custom virtual tablepackage My::VT; use base 'DBD::SQLite::VirtualTable'; sub CREATE {...} sub VTAB_TO_DECLARE {...} sub INSERT {...} ...Subclass the abstract class and override required methods

💡 SYNOPSIS

# register the virtual table module within sqlite
$dbh->sqlite_create_module(mod_name => "DBD::SQLite::VirtualTable::Subclass");

# create a virtual table
$dbh->do("CREATE VIRTUAL TABLE vtbl USING mod_name(arg1, arg2, ...)")

# use it as any regular table
my $sth = $dbh->prepare("SELECT * FROM vtbl WHERE ...");

Note: VirtualTable subclasses or instances are not called directly from Perl code; everything happens indirectly through SQL statements within SQLite.

📖 DESCRIPTION

This module is an abstract class for implementing SQLite virtual tables, written in Perl. Such tables look like regular tables, and are accessed through regular SQL instructions and regular DBI API; but the implementation is done through hidden calls to a Perl class. This is the same idea as Perl's tied variables, but at the SQLite level.

The current abstract class cannot be used directly, so the synopsis above is just to give a general idea. Concrete, usable classes bundled with the present distribution are:

Other Perl virtual tables may also be published separately on CPAN.

The following chapters document the structure of the abstract class and explain how to write new subclasses; this is meant for module authors, not for end users. If you just need to use a virtual table module, refer to that module's documentation.

🏛️ ARCHITECTURE

📂 Classes

A virtual table module for SQLite is implemented through a pair of classes:

🔧 Methods

Most methods in both classes are not called directly from Perl code : instead, they are callbacks, called from the sqlite kernel. Following common Perl conventions, such methods have names in uppercase.

🛠️ TABLE METHODS

📦 Class methods for registering the module

CREATE_MODULE

$class->CREATE_MODULE($sqlite_module_name);

Called when the client code invokes

$dbh->sqlite_create_module($sqlite_module_name => $class);

The default implementation is empty.

DESTROY_MODULE

$class->DESTROY_MODULE();

Called automatically when the database handle is disconnected. The default implementation is empty.

🏗️ Class methods for creating a vtable instance

CREATE

$class->CREATE($dbh_ref, $module_name, $db_name, $vtab_name, @args);

Called when sqlite receives a statement

CREATE VIRTUAL TABLE $db_name.$vtab_name USING $module_name(@args)

The default implementation just calls "NEW".

CONNECT

$class->CONNECT($dbh_ref, $module_name, $db_name, $vtab_name, @args);

Called when attempting to access a virtual table that had been created during previous database connection. The creation arguments were stored within the sqlite database and are passed again to the CONNECT method.

The default implementation just calls "NEW".

_PREPARE_SELF

$class->_PREPARE_SELF($dbh_ref, $module_name, $db_name, $vtab_name, @args);

Prepares the datastructure for a virtual table instance. @args is just the collection of strings (comma-separated) that were given within the "CREATE VIRTUAL TABLE" statement; each subclass should decide what to do with this information.

The method parses @args to differentiate between options (strings of shape $key=$value or $key="$value", stored in "$self->{options}"), and columns (other @args, stored in "$self->{columns}"). It creates a hashref with the following fields:

This method should not be redefined, since it performs general work which is supposed to be useful for all subclasses. Instead, subclasses may override the "NEW" method.

NEW

$class->NEW($dbh_ref, $module_name, $db_name, $vtab_name, @args);

Instantiates a virtual table.

⚙️ Instance methods called from the sqlite kernel

DROP

Called whenever a virtual table is destroyed from the database through the "DROP TABLE" SQL instruction.

Just after the "DROP()" call, the Perl instance will be destroyed (and will therefore automatically call the "DESTROY()" method if such a method is present).

The default implementation for DROP is empty.

Note: this corresponds to the "xDestroy" method in the SQLite documentation; here it was not named "DESTROY", to avoid any confusion with the standard Perl method "DESTROY" for object destruction.

DISCONNECT

Called for every virtual table just before the database handle is disconnected.

Just after the "DISCONNECT()" call, the Perl instance will be destroyed (and will therefore automatically call the "DESTROY()" method if such a method is present).

The default implementation for DISCONNECT is empty.

VTAB_TO_DECLARE

This method is called automatically just after "CREATE" or "CONNECT", to register the columns of the virtual table within the sqlite kernel. The method should return a string containing a SQL "CREATE TABLE" statement; but only the column declaration parts will be considered. Columns may be declared with the special keyword "HIDDEN", which means that they are used internally for the virtual table implementation, and are not visible to users — see http://sqlite.org/c3ref/declare_vtab.html and http://www.sqlite.org/vtab.html#hiddencol for detailed explanations.

The default implementation returns:

CREATE TABLE $self->{vtab_name}(@{$self->{columns}})

BEST_INDEX

my $index_info = $vtab->BEST_INDEX($constraints, $order_by)

This is the most complex method to redefined in subclasses. This method will be called at the beginning of a new query on the virtual table; the job of the method is to assemble some information that will be used

By calling this method, the SQLite core is saying to the virtual table that it needs to access some subset of the rows in the virtual table and it wants to know the most efficient way to do that access. The "BEST_INDEX" method replies with information that the SQLite core can then use to conduct an efficient search of the virtual table.

The method takes as input a list of $constraints and a list of $order_by instructions. It returns a hashref of indexing properties, described below; furthermore, the method also adds supplementary information within the input $constraints. Detailed explanations are given in http://sqlite.org/vtab.html#xbestindex.

Input constraints

Elements of the $constraints arrayref correspond to specific clauses of the "WHERE ..." part of the SQL query. Each constraint is a hashref with keys:

The $constraints arrayref is used both for input and for output. While iterating over the array, the method should add the following keys into usable constraints:

The "BEST_INDEX" method will not necessarily receive all constraints from the SQL "WHERE" clause : for example a constraint like "col1 < col2 + col3" cannot be handled at this level. Furthermore, the "BEST_INDEX" might decide to ignore some of the received constraints. This is why a second pass over the results will be performed by the sqlite core.

"order_by" input information

The $order_by arrayref corresponds to the "ORDER BY" clauses in the SQL query. Each entry is a hashref with keys:

This information could be used by some subclasses for optimizing the query strategy; but usually the sqlite core will perform another sorting pass once all results are gathered.

Hashref information returned by BEST_INDEX

The method should return a hashref with the following keys:

OPEN

Called to instantiate a new cursor. The default implementation appends "::Cursor" to the current classname and calls "NEW()" within that cursor class.

_SQLITE_UPDATE

This is the dispatch method implementing the "xUpdate()" callback for virtual tables. The default implementation applies the algorithm described in http://sqlite.org/vtab.html#xupdate to decide to call "INSERT", "DELETE" or "UPDATE"; so there is no reason to override this method in subclasses.

INSERT

my $rowid = $vtab->INSERT($new_rowid, @values);

This method should be overridden in subclasses to implement insertion of a new row into the virtual table. The size of the @values array corresponds to the number of columns declared through "VTAB_TO_DECLARE". The $new_rowid may be explicitly given, or it may be "undef", in which case the method must compute a new id and return it as the result of the method call.

DELETE

$vtab->INSERT($old_rowid);

This method should be overridden in subclasses to implement deletion of a row from the virtual table.

UPDATE

$vtab->UPDATE($old_rowid, $new_rowid, @values);

This method should be overridden in subclasses to implement a row update within the virtual table. Usually $old_rowid is equal to $new_rowid, which is a regular update; however, the rowid could be changed from a SQL statement such as

UPDATE table SET rowid=rowid+1 WHERE ...;

FIND_FUNCTION

$vtab->FIND_FUNCTION($num_args, $func_name);

When a function uses a column from a virtual table as its first argument, this method is called to see if the virtual table would like to overload the function. Parameters are the number of arguments to the function, and the name of the function. If no overloading is desired, this method should return false. To overload the function, this method should return a coderef to the function implementation.

Each virtual table keeps a cache of results from FIND_FUNCTION calls, so the method will be called only once for each pair "($num_args, $func_name)".

BEGIN_TRANSACTION

Called to begin a transaction on the virtual table.

SYNC_TRANSACTION

Called to signal the start of a two-phase commit on the virtual table.

COMMIT_TRANSACTION

Called to commit a virtual table transaction.

ROLLBACK_TRANSACTION

Called to rollback a virtual table transaction.

RENAME

$vtab->RENAME($new_name)

Called to rename a virtual table.

SAVEPOINT

$vtab->SAVEPOINT($savepoint)

Called to signal the virtual table to save its current state at savepoint $savepoint (an integer).

ROLLBACK_TO

$vtab->ROLLBACK_TO($savepoint)

Called to signal the virtual table to return to the state $savepoint. This will invalidate all savepoints with values greater than $savepoint.

RELEASE

$vtab->RELEASE($savepoint)

Called to invalidate all savepoints with values greater or equal to $savepoint.

🔧 Utility instance methods

Methods in this section are in lower case, because they are not called directly from the sqlite kernel; these are utility methods to be called from other methods described above.

dbh

This method returns the database handle ($dbh) associated with the current virtual table.

🔍 CURSOR METHODS

📦 Class methods

NEW

my $cursor = $cursor_class->NEW($vtable, @args)

Instantiates a new cursor. The default implementation just returns a blessed hashref with keys "vtable" and "args".

⚙️ Instance methods

FILTER

$cursor->FILTER($idxNum, $idxStr, @values);

This method begins a search of a virtual table.

The $idxNum and $idxStr arguments correspond to values returned by "BEST_INDEX" for the chosen index. The specific meanings of those values are unimportant to SQLite, as long as "BEST_INDEX" and "FILTER" agree on what that meaning is.

The "BEST_INDEX" method may have requested the values of certain expressions using the "argvIndex" values of the $constraints list. Those values are passed to "FILTER" through the @values array.

If the virtual table contains one or more rows that match the search criteria, then the cursor must be left point at the first row. Subsequent calls to "EOF" must return false. If there are no rows match, then the cursor must be left in a state that will cause "EOF" to return true. The SQLite engine will use the "COLUMN" and "ROWID" methods to access that row content. The "NEXT" method will be used to advance to the next row.

EOF

This method must return false if the cursor currently points to a valid row of data, or true otherwise. This method is called by the SQL engine immediately after each "FILTER" and "NEXT" invocation.

NEXT

This method advances the cursor to the next row of a result set initiated by "FILTER". If the cursor is already pointing at the last row when this method is called, then the cursor no longer points to valid data and a subsequent call to the "EOF" method must return true. If the cursor is successfully advanced to another row of content, then subsequent calls to "EOF" must return false.

COLUMN

my $value = $cursor->COLUMN($idxCol);

The SQLite core invokes this method in order to find the value for the N-th column of the current row. N is zero-based so the first column is numbered 0.

ROWID

my $value = $cursor->ROWID;

Returns the rowid of row that the cursor is currently pointing at.

🔗 SEE ALSO

SQLite::VirtualTable is another module for virtual tables written in Perl, but designed for the reverse use case : instead of starting a Perl program, and embedding the SQLite library into it, the intended use is to start an sqlite program, and embed the Perl interpreter into it.

✍️ AUTHOR

Laurent Dami <dami AT cpan.org>

📄 COPYRIGHT AND LICENSE

Copyright Laurent Dami, 2014.

Parts of the code are borrowed from SQLite::VirtualTable, copyright (C) 2006, 2009 by Qindel Formacion y Servicios, S. L.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

DBD::SQLite::VirtualTable
📘 NAME 🚀 Quick Reference 💡 SYNOPSIS 📖 DESCRIPTION 🏛️ ARCHITECTURE
📂 Classes 🔧 Methods
🛠️ TABLE METHODS
📦 Class methods for registering the module 🏗️ Class methods for creating a vtable instance ⚙️ Instance methods called from the sqlite kernel 🔧 Utility instance methods
🔍 CURSOR METHODS
📦 Class methods ⚙️ Instance methods
🔗 SEE ALSO ✍️ AUTHOR 📄 COPYRIGHT AND LICENSE

Generated by phpman v4.9.26-5-g7740029 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-08-09 13:25 @216.73.216.150
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0 Transitional!Valid CSS!

^_top_^