从 Java 访问 SDF SQLServer Mobile 文件
在工作中,我们希望访问使用 SQLServer Mobile Edition
在 PDA 中生成的 .sdf
文件内的数据。 我们使用SqlJDBC4
数据包进行JDBC
,但无法进入服务器。 我们知道它正在运行,因为我们可以远程登录到它,但是从 Java
代码中我们一次又一次地发现无法连接到服务器。
我们使用这个连接字符串:
String connectionUrl="jdbc:sqlserver://localhost;databaseName=d:\\file.sdf;"+
"SelectMethod=cursor;Password=test;integratedSecurity=true";
任何stackoverflower
可以告诉我们正确的连接字符串或者我们做错了什么吗?
Here at work we want to access the data inside a .sdf
file generated in a PDA with SQLServer Mobile Edition
. We use the SqlJDBC4
packet for JDBC
but can't get into the server. We know it's running because we can telnet into it, but from the Java
code we just get once and again that we can't connect to server.
We use this connection String:
String connectionUrl="jdbc:sqlserver://localhost;databaseName=d:\\file.sdf;"+
"SelectMethod=cursor;Password=test;integratedSecurity=true";
Any fellow stackoverflower
can tell us the right connection string or whatever we are doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此来自关于 CE 数据库的问题。 但也许它无论如何都能帮助你。 根据我的理解,问题是相似的 - 访问 sdf。
This is from a question about a CE-Database. But maybe it can help you anyway. From my understanding, the problem is similar - getting access to the sdf.