summaryrefslogtreecommitdiffstats
path: root/examples/SQL
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2026-02-26 09:56:44 +0100
committerSlávek Banko <slavek.banko@axis.cz>2026-02-27 02:56:53 +0100
commit8c433b92cb67ba6acd5ab0f27003957bdb6833f3 (patch)
treeba03ba107674495190ab5b2090fe3c6d52318a36 /examples/SQL
parentdc749f0e7dedf8642f2fc933d224b6c9897141aa (diff)
downloadpytqt-8c433b92cb67ba6acd5ab0f27003957bdb6833f3.tar.gz
pytqt-8c433b92cb67ba6acd5ab0f27003957bdb6833f3.zip
Use utf8 encoding for national characters in test databases.HEADmaster
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'examples/SQL')
-rw-r--r--examples/SQL/testdb_mysql.sql2
-rw-r--r--examples/SQL/testdb_pg.sql2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/SQL/testdb_mysql.sql b/examples/SQL/testdb_mysql.sql
index 144d4c9..9d888a2 100644
--- a/examples/SQL/testdb_mysql.sql
+++ b/examples/SQL/testdb_mysql.sql
@@ -52,6 +52,6 @@ insert into prices (id, name, price) values
(5, "Tux, der Pinguin", 65.35),
(6, "Makroskop", 985000.0),
(7, "Regenbaum", 1235.65),
- (8, "Bluterguß", 23.95),
+ (8, "Bluterguss", 23.95),
(9, "Weltmeisterschaft", 2.95),
(10, "Premiere Dekoder", -185.75);
diff --git a/examples/SQL/testdb_pg.sql b/examples/SQL/testdb_pg.sql
index 73a4270..2e04387 100644
--- a/examples/SQL/testdb_pg.sql
+++ b/examples/SQL/testdb_pg.sql
@@ -185,7 +185,7 @@ COPY "prices" FROM stdin;
5 Tux, der Pinguin 65.35
6 Makroskop 985000
7 Regenbaum 1235.65
-8 Bluterguß 23.95
+8 Bluterguss 23.95
9 Weltmeisterschaft 2.95
10 Premiere Dekoder -185.75
\.