Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Visual Studio 2010 中创建了一个 mdf 数据库文件有没有办法从 java netbeans 项目连接到这个数据库我找到了一个 jdbc 驱动程序,但它没有用
您不能直接使用 Java 中的 MDF 文件。您将需要在 MDF 文件上打开一个数据库程序实例,然后如果数据库程序实例有可用的 JDBC 驱动程序,您就可以通过 JDBC 与之对话。
如果您只需要一个用于 Java 程序的简单数据库,那么请查看可以嵌入到您的应用程序中的 Apache Derby。