Re: [SQLObject] SqlObject Sqlmeta fromDatabase problem
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: Oleg B. <ph...@ph...> - 2012-03-26 13:05:18
|
On Mon, Mar 26, 2012 at 07:59:39AM -0500, Jeremy Hoyle wrote: > File "C:\Pysoft\Software\SMS Development\tests\test0.py", line 5, in > <module> > from pySMS import Companys > File "C:\Pysoft\Software\SMS Development\pySMS\__init__.py", line 1, in > <module> > from Company import Companys Here is the problem now - Company (and Companys) is imported before a connection is created. You have to open a connection before the class Company is created (i.e., before the module is imported). Oleg. -- Oleg Broytman http://phdru.name/ ph...@ph... Programmers don't die, they just GOSUB without RETURN. |