How to form connection between HSQLDB and C# .net?
问题 How to form connection between HSQLDB and C# .net ? I have already looked at SharpHSQL and H2Sharp but not able to connect the HSQLDB. 回答1: try like this: Make sure you've already add hsqldb.dll, IKVM.OpenJDK.Core.dll, IKVM.OpenJDK.Jdbc.dll as reference. If you don't have the IKVM library, you can download here. At your C#: using java.sql; //add this. for create a connection: private Connection GetConnection() { DriverManager.registerDriver(new org.hsqldb.jdbcDriver()); Connection conn =