Hi,
I can reproduce this problem with previous versions, but so far I
couldn't reproduce it with version 1.0.78. Could you post a simple
test case similar to the one below? Or maybe this test doesn't work
for you?
public static void main(String[] args) throws Exception {
org.h2.Driver.load();
Server server = Server.createTcpServer(new String[0]).start();
Connection conn =
DriverManager.getConnection("jdbc:h2:tcp://localhost/mem:appDB");
System.out.println(conn.getMetaData().getDatabaseProductVersion());
PreparedStatement prep = conn.prepareStatement("CALL ?");
prep.setCharacterStream(1, new StringReader(new String(new
char[100000])));
prep.executeQuery();
conn.close();
server.stop();
}
Regards,
Thomas
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "H2
Database" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/h2-database?hl=en
-~----------~----~----~----~------~----~------~--~---