sqlite_libencoding(no version information, might be only in CVS) sqlite_libencoding -- Returns the encoding of the linked SQLite library.Descriptionstring sqlite_libencoding ( void )The SQLite library may be compiled in either ISO-8859-1 or UTF-8 compatible modes. This function allows you to determine which encoding scheme is used by your version of the library.
When compiled with UTF-8 support, sqlite handles encoding and decoding of UTF-8 multi-byte character sequences, but does not yet do a complete job when working with the data (no normalization is performed for example), and some comparison operations may still not be carried out correctly.
See also sqlite_libversion(). | ||||||