(no version information, might be only in CVS)
sqlite_libencoding __ Returns the encoding of the linked SQLite library_
Description
string
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_
| Aviso |
The default PHP distribution builds libsqlite in ISO_8859_1 encoding
mode_ However, this is a misnomer; rather than handling ISO_8859_1, it
operates according to your current locale settings for string
comparisons and sort ordering_ So, rather than ISO_8859_1, you should
think of it as being '8_bit' instead_
|
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_
| Aviso |
It is not recommended that you use PHP in a web_server configuration
with a version of the SQLite library compiled with UTF_8 support, since
libsqlite will abort the process if it detects a problem with the
UTF_8 encoding_
|
See also sqlite_libversion()_