Seam 2.2 与 Microsoft Access
是否可以使用 Eclipse (Ganymede) 中的 JBoss 工具将 MS Access 数据库 (.mdb) 导入到 Seam 项目中? 开始一个新的seam项目,我看不到任何使用ms access作为数据库类型的字段。 任何答案表示赞赏。
is it possible to import a MS access database (.mdb) in a seam project using JBoss tools within Eclipse (Ganymede)?
Starting a new seam project, I cannot see any field which uses ms access as database type.
Any answer is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Java 程序通常通过 JDBC 驱动程序与数据库通信。据我所知,没有用于 Access MDB 文件的 JDBC 驱动程序。在 Access ODBC 驱动程序的帮助下,您可以使用 JDBC-ODBC 桥创建与 Access 数据库的连接。解释了如何设置此结构 这里
您必须在使用该连接的 JBoss 应用程序服务器中创建一个数据库连接,如何完成此操作可以参见 此处。
Java programs generally talk to databases through JDBC drivers. To my knowledge there is no JDBC driver for Access MDB files. You can use the JDBC-ODBC bridge to create a connection to the Access database with a little help from the Access ODBC driver. How to set up this construction is explained here
You have to create a database connection in the JBoss application server that uses that connection, how this is done can be found here.