数据库应用程序的开发(外文文献翻译).doc

约10页DOC格式手机打开展开

数据库应用程序的开发(外文文献翻译),database applications let users interact with information that is stored in databases. databases provide structure for the information, and allow it to be share...
编号:8-206305大小:51.50K
分类: 论文>外文翻译

内容介绍

此文档由会员 wanli1988go 发布

Database applications let users interact with information that is stored in databases. Databases provide structure for the information, and allow it to be shared among different applications.
Delphi provides support for relational database applications. Relational databases organize information into tables, which contain rows (records) and columns (fields). These tables can be manipulated by simple operations known as the relational calculus.
When designing a database application, you must understand how the data is structured. Based on that structure, you can then design a user interface to display data to the user and allow the user to enter new information or modify existing data.
数据库应用程序的开发可以帮助用户直接访问到数据库中的信息,这些信息通常被设计成某种特定的结构存放在数据库中,以便让不同的应用程序访问。
Delphi支持关系型数据库的应用程序,关系型数据库一般由一个或多个数据表组成,数据表包括行(纪录)和列(字段)。我们可以对数据表执行一些简单的操作命令。这就是通常所说的关系型结构。
设计一个数据库应用程序,首先确定为应用程序建立一个什么样的数据库,然后设计用户界面,建立应用程序与数据库之间的联系,实现更新数据和输入数据的操作。
下面介绍一下在设计数据库应用程序过程中的一些常见问题:
数据库的应用
数据库的结构
设计用户界面