本文介绍了如何使用C#连接HSQLDB数据库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我为C#找到了这个例子......
I found this example for C# ...
hsqldb.dll, <br />
IKVM.OpenJDK.Core.dll, <br />
IKVM.OpenJDK.Jdbc.dll
作为参考
as reference
using java.sql;
private Connection GetConnection()
{
DriverManager.registerDriver(new org.hsqldb.jdbcDriver());
Connection conn = DriverManager.getConnection("jdbc:hsqldb:hsql://[host]/[db name]", "[username]", "[password]");
return conn;
}
但我还没有找到与visual studio兼容的hsqldb库。
有谁知道怎么做?谢谢
But I have not found hsqldb library compatible with visual studio.
Does anyone know how to do this? Thanks
推荐答案
引用:
但我还没有找到与视觉兼容的hsqldb库工作室。
But I have not found hsqldb library compatible with visual studio.
根据 []它位于 / dotnet
文件夹中引用的 []
According to the HSQLDB page[^] it's in the /dotnet
folder of the referenced SVN repository[^]
这篇关于如何使用C#连接HSQLDB数据库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!