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
Tangram::Driver::SQLite(3) User Contributed Perl Documentation Tangram::Driver::SQLite(3)

Tangram::Driver::SQLite - Orthogonal Object Persistence in SQLite databases

   use Tangram;
   use Tangram::Driver::SQLite;

   $schema = Tangram::Driver::SQLite->schema( $hashref );

   Tangram::Driver::SQLite->deploy($schema, $dbh);

   $storage = Tangram::Driver::SQLite->connect( $schema,
      $data_source, $username, $password );

   $storage->disconnect();

   Tangram::Driver::SQLite->retreat($schema, $dbh);

This is the entry point in the SQLite-specific object-relational persistence backend.

For reasons similar to the Tangram::Driver::Pg module, this back-end automatically encodes Tangram::Type::Dump::Storable objects via MIME::Base64 to avoid truncation of values on NUL bytes.

Also, note that despite what is mentioned on the front page of www.sqlite.org, SQLite is not actually an ACID database; any writer to the database has to wait for all other writers to finish before they can begin their transaction.

So make sure you start and complete your transactions as quickly as possible with this back-end.

2015-10-09 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.