[EMAIL PROTECTED] 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. -- http://mail.python.org/mailman/listinfo/python-list