We have just started piloting a gui app with idb and have a few concerns:
1/ Integrity
. Is there a projected release date?
2/ String escaping
create table test(test varchar(50));
select testcol from test;
returns the string testcol: I think it should break
PreparedStatement st = con.PrepareStatement("insert into test(?)");
st.setString(1, "Hello")
works but the SQL is not quoted
st.setString(1, "Hello, you")
works and the SQL is quoted
st.setString(1, "It's a nice day")
breaks, as do all statements with '
Should the jdbc setString not escape the single quotes correctly?
Other than this it seems nice and fast and easy to use, and I hope we can
work around the problem
Alistair
-----------------------------------------------------------------------------
To unsubscribe from this mailing list, send email to majordomo@enhydra.org
with the text "unsubscribe instantdb" in the body of the email.
If you have other questions regarding this mailing list, send email to
the list admin at owner-instantdb@enhydra.org.
|