[SQLObject] Patch for create new row in Firebird database
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
|
From: Predrag P. <pe...@cg...> - 2004-09-03 21:09:55
|
when you try to insert new row in firebrid database using svn 210 you get:
------------------------------
File "sqlobject\firebird\firebirdconnection.py", line 59, in
_runWithConnection
val = meth(conn, *args)
TypeError: _queryInsertID() takes exactly 7 arguments (6 given)
------------------------------
solution is to change 82 line from file
"sqlobject\firebird\firebirdconnection.py"
old bad line is:
------------------------------
def _queryInsertID(self, conn, table, idName, id, names, values):
------------------------------
new 82 line look like:
------------------------------
def _queryInsertID(self, conn, soInstance, id, names, values):
------------------------------
and svn repository don't work again,
By
|