如何使小程序与 MS Access 数据库连接?
编写一个小程序来显示 所描述程序的接口 以下。当小程序执行时 将在屏幕上显示 适当的布局,并响应 用户的操作。
该程序模拟一个学生 管理系统具有以下内容 特点:
界面很吸引人,非常用户化 友好、直观(即充当 有人会期望它起作用),并且 相当现实。它必须接受 学生号、姓名、年龄、地址、日期 出生、性别、血型等 用户并将其保存在 MS Access 中 数据库。 + 电子邮件 ID、电话号码、级别。
该界面使用命令按钮来 (i) 添加、编辑、删除、更新和取消 记录,(ii) 导航 向前或向后记录 (iii) 直接移至第一条记录或最后一条记录 记录。记录数 输入的内容应使用显示 当用户按下 a 时报告 “报告”按钮。
最初使所有字段不可见 或将其灰显。
在界面中适当使用 至少一组“单选按钮”和 至少一个“下拉列表”。制作 布局的适当使用 经理。
Write an applet which displays the
interface for the program described
below. When the applet is executed it
will display the screen in the
appropriate layout, and responds to
the user's actions.The program simulates a student
management system having the following
characteristics:The interface is attractive, very user
friendly, intuitive (i.e. acts as
someone would expect it to act), and
reasonably realistic. It must accept
the student id,name,age,address,date
of birth,gender,blood group etc from
the user and save it in MS Access
database. + email Id,phone no.,level.The interface uses command buttons to
(i) add,edit,delete,update and cancel
the records, (ii) to navigate the
records forward or backward (iii) to
move directly to first record or last
record. The number of records
entered should be displayed using a
report when the user presses a
"report" button.Initially make all fields not visible
or gray it out.In the interface appropriately use at
least one set of "radio buttons" and
at least one "drop-down list". Make
appropriate use of the Layout
managers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过将 MS-Access 数据库添加到 ODBC 源来访问它。
以下是一些您可以熟悉的示例代码。看一下 java.sql.*< /a> 相关的类和方法——您将在那里找到几乎所有与数据库交互的答案。是的,这里与视觉摆动类存在一些可怕的耦合(您应该抛出一个错误,而不是仅仅显示一个错误并强制系统退出)。另外,我认为 JdbcOdbcDriver 的使用也已被弃用。
You can access the MS-Access database by adding it to your ODBC sources.
Here is some example code that you can familiarize yourself with. Take a look at the java.sql.* related classes and methods -- you'll find almost all of your answers in there for interacting with the database. Yes, there is some hideous coupling with visual swing classes going on here (you should throw an error instead of just displaying one and forcing a system exit). Also, I think the use of the JdbcOdbcDriver is deprecated as well.