0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-07-13 06:15:17 +00:00
Files
libsql/libsql-sqlite3/test/fixtures/enc2.test
2024-05-27 12:59:10 +02:00

8 lines
141 B
Plaintext

PRAGMA encoding=UTF8;
CREATE TEMP TABLE t1(x);
INSERT INTO t1 VALUES('this is a test');
PRAGMA encoding=UTF16;
SELECT * FROM t1;