0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2024-11-23 21:26:15 +00:00
libsql/libsql-ffi/bundled/SQLite3MultipleCiphers/test/test2.sql
2024-01-09 18:12:03 +01:00

12 lines
285 B
SQL

.echo on
pragma cipher='sqlcipher';
pragma key='test2';
create table t1 (c1 int, c2 char);
insert into t1 values (1,'Alf');
insert into t1 values (2,'Bert');
insert into t1 values (3,'Cecil');
insert into t1 values (4,'Donald');
insert into t1 values (5,'Ernie');
select * from t1;
.q