File: SQLite2.pm

package info (click to toggle)
libtangram-perl 2.10-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,184 kB
  • ctags: 702
  • sloc: perl: 9,665; makefile: 9
file content (13 lines) | stat: -rw-r--r-- 266 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13

# compatibility for SQLite 2.  Primarily for the hoary
# libdbd-sqlite-perl package which uses "SQLite2" as the driver name.

use strict;

package Tangram::Driver::SQLite2;

use Tangram::Driver::SQLite;
use vars qw(@ISA);
 @ISA = qw( Tangram::Driver::SQLite );

1;