Sha256: 634117f402fa03562c8383bbf263f9a274426be09f1cca8469655b706ab02419
Contents?: true
Size: 806 Bytes
Versions: 4
Compression:
Stored size: 806 Bytes
Contents
create table names (name varchar(255), age integer); --- insert into names (name, age) values ("Bob", 21); --- insert into names (name, age) values ("Joe", 19); --- insert into names (name, age) values ("Jim", 30); --- create table precision_test (text_field varchar(20) primary key not null, integer_field integer, decimal_field decimal(2,1), numeric_field numeric(30,6)); --- create view view_names as select * from names; --- create table blob_test (name varchar(255)); --- create table boolean_test (num integer, mybool boolean); --- create table time_test (mytime time); --- create table timestamp_test (mytimestamp timestamp); --- create table bit_test (mybit bit); --- create table field_types_test (foo integer not null primary key default 1); --- create table db_specific_types_test (dbl double);
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
ydbi-0.6.0 | test/dbd/sqlite/up.sql |
ydbi-0.5.7 | test/dbd/sqlite/up.sql |
ydbi-0.5.0 | test/dbd/sqlite/up.sql |
dbd-sqlite-0.1.2 | test/dbd/sqlite/up.sql |