[sqlalchemy] unable to open database file

2014-06-19 Thread Scott Horowitz
Hi, A user of my applicable is getting a unable to open database file None None error because the file path to their database has a Á character in it. It works fine if the character is removed, but that is not a good solution. Does anyone know how to solve this? Thanks, Scott -- You

Re: [sqlalchemy] unable to open database file

2014-06-19 Thread Scott Horowitz
: no but this is more of a pysqlite/sqlite3 issue, you should ask on the Python users list, and refer to the sqlite3.connect() function: import sqlite3 conn = sqlite3.connect(/path/to/file.db) On 6/19/14, 2:28 PM, Scott Horowitz wrote: Hi, A user of my applicable is getting a unable to open

Re: [sqlalchemy] unable to open database file

2014-06-19 Thread Scott Horowitz
...@zzzcomputing.com wrote: On 6/19/14, 3:37 PM, Scott Horowitz wrote: Michael, Thanks for the hint about python's sqlite3. I'll just point out that I can work around the issue directly with sqlite3 by providing a relative path that does not include the character: import sqlite3