JavaScript promise rejection: Loading CSS chunk index-domready failed. (error: https://sirherobrine23.com.br/assets/css/index-domready.9de057c0.css). Open browser console to see more details.
0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-07-06 22:51:05 +00:00
Files
libsql/libsql-ffi/bundled/SQLite3MultipleCiphers/test/test1.sql
2024-01-09 18:12:03 +01:00

12 lines
267 B
SQL

.echo on
pragma cipher='sqlcipher';
pragma legacy=4;
pragma key='test1';
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');
select * from t1;
.q