qmlbook / qt6book

The Qt 6 Book - A book about QML
https://www.qt.io/product/qt6/qml-book
Other
342 stars 112 forks source link

the sql commands are wrong #143

Closed add358 closed 2 years ago

add358 commented 2 years ago

"Getting Started" -> "Application Types", the following snippet was wrong.

CREATE TABLE city (name TEXT, country TEXT);
INSERT INTO city value ("Munich", "Germany");
INSERT INTO city value ("Paris", "France");
INSERT INTO city value ("London", "United Kingdom");

the value may change to values