pub type Tester<'a> = (u64, bool, Vec<u8>, &'a str, i8, f32);
Expand description
for tester
- create table tbl (
- id integer primary key autoincrement,
- b varchar(1),
- u blob,
- s text(16),
- i integer,
- f float
- );
- insert into tbl (b, u, s, i, f) values (“T”, x’ee55’, ‘abc’, -1, 2.0);
- insert into tbl (b, u, s, i, f) values (“F”, x’2324’, ‘XYZ’, 2, -1.0);
- select typeof(b), typeof(u), typeof(s), typeof(i), typeof(f) from tbl;
- text|blob|text|integer|real