Hello folks,

I am a newbie here, so please pardon any errors on my part.

I am trying to port a large program to SQLite, and I'm finding out that
the JDBC driver does not support some JDBC standard method calls for
blobs and clobs  (e.g., setObject, setBinaryStream/getBinaryStream and
setCharacterStream/getCharacterStream).

Regardless of the technical reasons why, I would think it is important
to comply with the (de-facto) standard of the API. Otherwise it becomes
an impediment to porting client programs. In my case, I have to look
through all references to these method calls and put in special-case
code to handle SQLite.

I would imagine that it is fairly easy to translate the unsupported
calls to supported ones within the driver code. An obvious example is
setCharacterStream: within the driver code, one could simply read the
stream's contents and forward it to the setString method.

Please comment.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"SQLiteJDBC" 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-beta.google.com/group/sqlitejdbc?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to