kinterbas and Python

David Rushby DavidRushby at gmail.com
Sat Apr 8 11:22:22 EDT 2006


bssoft at tin.it wrote:
> My error code is :
>
> concorrency level error
> use kinterbas.init(concurrency_level=?) to set the concurrency level
> legally...

That's not the actual error message.  The actual error message is:
"""
The concurrency level cannot be changed once it has been set.  Use
kinterbasdb.init(concurrency_level=?) to set the concurrency level
legally.
"""

So, it seems that you're either trying to call kinterbasdb.init
multiple times, or you're performing an operation that calls
kinterbasdb.init implicitly, and later you're trying to call
kinterbasdb.init explicitly.

Either remove the kinterbasdb.init call entirely, or move it to a place
where it is called before you perform any database operations, and
won't be called again.




More information about the Python-list mailing list