Open GoogleCodeExporter opened 9 years ago
Just realized my last command could be misinterpreted.
I have the same result if the photos.db file is not empty.
Original comment by leplat...@gmail.com
on 24 Jan 2011 at 10:24
I have the same issue with a catalog beeing created by Adobe Lightroom 3
Macintosh-4:Downloads be$ sqlautocode
sqlite:////Users/be/Desktop/Photos2010/Photos2010-2.lrcat
Starting...
Traceback (most recent call last):
File "/usr/local/bin/sqlautocode", line 8, in <module>
load_entry_point('sqlautocode==0.6b1', 'console_scripts', 'sqlautocode')()
File "build/bdist.macosx-10.6-universal/egg/sqlautocode/main.py", line 41, in main
AttributeError: 'SQLiteDialect_pysqlite' object has no attribute
'get_default_schema_name'
Macintosh-4:Downloads be$
Original comment by bernhard...@mac.com
on 5 Feb 2011 at 11:43
[deleted comment]
I also encountered the SAME error.
> sqlautocode mysql://user:pswd@hostname:3306/schema_name -o tables.py
Starting...
Traceback (most recent call last):
File "F:py26/scripts/sqlautocode-script.py", line 8, in <module>
load_entry_point('sqlautocode==0.6b1', 'console_scripts', 'sqlautocode')()
File "build/bdist.win32/egg/sqlautocode/main.py", line 41, in main
AttributeError: 'SQLiteDialect_pysqlite' object has no attribute
'get_default_schema_name'
Pl. help.
Thanks,
vineet.deodhar (at) gmail (dot) com
Original comment by vineet.d...@gmail.com
on 15 Feb 2011 at 9:02
The issue may be fixed. Find the main.py file and patch it:
srv-main:~ # diff main.py main.py_patched
45c45,47
< tablenames = db.dialect.table_names(conn, reflection_schema)
---
> if not reflection_schema:
> reflection_schema = None
> tablenames = db.dialect.get_table_names(conn, reflection_schema)
Usage:
sqlautocode --declarative --schema= sqlite:///run/forum/data.sqlite3 >
modules/data/forum/tables.py
Original comment by vintoz...@gmail.com
on 28 Apr 2011 at 11:32
Original issue reported on code.google.com by
leplat...@gmail.com
on 24 Jan 2011 at 10:20