Howard Kapustein wrote:
> 
> sqlite3_win32_is_nt
> sqlite3_win32_mbcs_to_utf8
> sqlite3_win32_set_directory
> sqlite3_win32_sleep
> sqlite3_win32_utf8_to_mbcs
> sqlite3_win32_write_debug
> 

Jan is correct, these functions are non-portable and are primarily designed
for abstracting differences between Windows and other platforms.  They are
not documented [mostly] because they should not be needed by applications
using SQLite.

There are certain circumstances where using sqlite3_win32_set_directory()
is handy to wrapper libraries running on WinRT; however, the supported
alternative is to use the associated PRAGMAs (e.g. "data_store_directory"
and/or "temp_store_directory") against a temporary in-memory database prior
to opening another database.

--
Joe Mistachkin

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to