11 Aug
2005
11 Aug
'05
3:13 p.m.
I have binary data that I want to store at the MonetDB server and manage it through the JDBC interface. I just figured out that Monet's JDBC interface does not implement set/getBytes() or set/getBlob(). I tried to create a String object out of my vector of bytes through new String(vector) but the string it generates is crap and the system halts. Any ideas to overcome the problem? Moreover, while surfing the source code of Monet's JDBC driver I found something weird. I think line 67 of MonetClob.java should be return(buf.substring((int)(pos - 1), (int)(pos-1 + length))); instead of return(buf.substring((int)(pos - 1), (int)(pos + length))); Cheers, Rodrigo