Suppose I have:
untimedStatement = connection.createStatement() ;
timedStatement = connection.createStatement();
And then run
timedStatement.execute("SET statement_timeout TO " + timeout);
Will the SET statement_timeout command also affect untimedStatement? I was hoping it would not but some of the behaviour I'm observing suggests that SET statement_timeout has a "universal" effect (at least for the life of the program)