No subject
Thu Mar 18 12:11:26 PST 2004
But this is wrong , we should set the properties of the connection for every new connection.
So I think the code should be this:
protected synchronized DBConnection createNewConnection() throws DBException{
........
if (firstConnection) {
initialized = true;
.........
}
//Added so that limitation syntax is properly set for the connection
oneConnection.setLimitationPosition(this.limitationPosition);
oneConnection.setLimitationSyntax(this.limitationSyntax);
oneConnection.setEscapeHandler(this.escapeHandler);
}
More information about the Opensource
mailing list