On 6/27/2015 9:37 AM, Juan Pablo Garc??a Coello wrote: > path to the removable storage path like ??E:\db.dat?? and it always > tells CannotOpen.
Your email is using charse gb2312 which is a Chinese character set. four of the characters are not mapping to UTF-8 properly. A problem may be that you are passing invalid UTF-8 to SQLite which may be causing the inability to open the file. the invalid characters are 0x3f ox3f which is not a valid UTF-8 sequence. ------------ Scott Doctor scott at scottdoctor.com ------------------