Discussion Board
-
e32db.open() names need \\ not /
2005-01-10, 22:14
#1
Registered User
although the docs say you can substitute \\ with / in path names, one must use \\ in e32db.open()
i.e.
import e32db
e = e32db.Dbms()
e.open(u"c:\\database.db")
e.close()
will succeed but
import e32db
e = e32db.Dbms()
e.open(u"c:/database.db")
e.close()
will fail with SymbianError: KErrBadName
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules