-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 07/10/13 18:37, Sascha Sertel wrote: > I have since tried to find out what the correct way is to point SQLite > to the right place for creating temporary files in Android, with no > luck.
https://developer.android.com/reference/android/content/Context.html#getDir(java.lang.String, int) Pass in "sqlite_tmp" as the string. Every app also has a cache dir. Note that Android can clear this at any arbitrary point if storage is getting low so it isn't the most robust locaton for temp files. https://developer.android.com/reference/android/content/Context.html#getCacheDir() Roger -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iEYEARECAAYFAlJTb3YACgkQmOOfHg372QTbUwCguSVoQ7AcJrGCk7qwwhzFQOqQ z5YAoIFNQxhOTeP8/0Aq2lEpOD0Lc+GT =VUgP -----END PGP SIGNATURE----- _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

