From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] 
On Behalf Of Dan Kennedy
> Are you using synchronous=NORMAL or synchronous=FULL?

When opening the database, in sqlite3PagerSetSafetyLevel(), I get:
level:3,
noSync:0,
fullSync:1,
sync_flags:2

> What does sqlite3_vfs_find(0)->xDeviceCharacteristics() return?

>From Sqlite source code:

/*
** Return the device characteristics for the file. This is always 0 for unix.
*/
static int unixDeviceCharacteristics(sqlite3_file *NotUsed){
  UNUSED_PARAMETER(NotUsed);
  return 0;
}

It seems that this function is not relevant on Linux/Android. But at shell 
level, we get:
# df -k /data
Filesystem             Size   Used   Free   Blksize
/data                  472M    47M   425M   1024
---------------------------------------------------------------------
Intel Corporation SAS (French simplified joint stock company)
Registered headquarters: "Les Montalets"- 2, rue de Paris, 
92196 Meudon Cedex, France
Registration Number:  302 456 199 R.C.S. NANTERRE
Capital: 4,572,000 Euros

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.

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

Reply via email to