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-09 12:29:20 +00:00
Files
libsql/libsql-ffi/bundled/SQLite3MultipleCiphers/test/test2.sql

12 lines
285 B
MySQL
Raw Normal View History

.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