File: SQLite2.pm

package info (click to toggle)
libtangram-perl 2.12-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,308 kB
  • ctags: 734
  • sloc: perl: 10,260; 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;