prsqlite
prsqlite copied to clipboard
UTF8 consideration
- SQLite supports using utf8 characters (even non ascii) for identifiers (e.g. table name).
- text should be handled by
&str
orString
. However validating utf8 sequence to convert&[u8]
to&str
has some cost.