You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,6 @@ sqlite modern cpp wrapper
5
5
6
6
This library is a lightweight modern wrapper around sqlite C api .
7
7
8
-
**Heads up!**
9
-
The current master contains a _breaking change_ compared to the 2.4 release for database names with non-ASCII characters. For details, see [issue 82](https://github.com/aminroosta/sqlite_modern_cpp/issues/82).
10
-
11
8
```c++
12
9
#include<iostream>
13
10
#include<sqlite_modern_cpp.h>
@@ -324,6 +321,12 @@ The usual way works for installing:
324
321
325
322
Note, there's nothing to make, so you there's no need to run configure and you can simply point your compiler at the hdr/ directory.
326
323
324
+
Breaking Changes
325
+
----
326
+
327
+
- Databases with non-ASCII characters in their names created with versions up to 2.4 are not found by the current master.
328
+
You have to manually rename them to their actual (UTF-8 encoded) name.
0 commit comments