citrusframework / citrus-db

Database driver and server for relational DBMS simulation via JDBC
Apache License 2.0
4 stars 2 forks source link

Support CLOB and BLOB #28

Open christophd opened 6 years ago

christophd commented 6 years ago

When executing update statements driver throws exception:

java.sql.SQLException: Not supported JDBC prepared statement function 'setClob'"

christophd commented 6 years ago

We need to transfer the CLOB data stream to the citrus-db server. Same thing for BLOB data streams. I suggest to load the CLOB stream as String data as a first implementation. The BLOB stream could be transformed into a base64 encoded String for transmission to the server.