First of all, we are really impressed with the JDBC driver you created
for SQLite.  We are using : sqlitejdbc-v033-nested.jar

We are currently testing SQLite with a web application we developed
using Macromedia Flash and Java.  Since Flash Remoting does not
support passing Resultsets, we decided to use Sun's CachedRowSet to
pass back the data required.

This however does not seem to be implemented in your driver, as we get
the error: NYI (We assume this stands for Not Yet Implemented).

Here is a snippet of the code we are using...

            CachedRowSetImpl crs = null;
            ResultSet rs = stmt.executeQuery(sqlCmd);
            crs.populate(rs);

The error occurs on the populate command...

Is there anything we can do to get over this hurdle or are you coming
out with a new version that will address this issue?

Best regards,
Eugene


--~--~---------~--~----~------------~-------~--~----~
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.google.com/group/sqlitejdbc?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to