"Dyre Tjeldvoll (JIRA)" <[email protected]> writes: > [ > http://issues.apache.org/jira/browse/DERBY-85?page=comments#action_12365868 ] > > Dyre Tjeldvoll commented on DERBY-85: > ------------------------------------- > > Hi Sateesh, thank you so much for taking the time to look at the > patch! Is it really possible to get a different connection inside an > ij-script? Wow, I did not know that, how do you do that? Do you have > an example?
So you have never typed help in ij? ;) ij> connect 'jdbc:derby:/tmp/mydb'; ij> show connections; CONNECTION0* - jdbc:derby:/tmp/mydb * = current connection ij> connect 'jdbc:derby:/tmp/mydb'; ij(CONNECTION1)> show connections; CONNECTION0 - jdbc:derby:/tmp/mydb CONNECTION1* - jdbc:derby:/tmp/mydb * = current connection ij(CONNECTION1)> set connection connection0; ij(CONNECTION0)> set connection connection1; ij(CONNECTION1)> -- Knut Anders
