An empty database is like an empty cookie jar — it’s not much fun. And searching an empty database is no more interesting or fruitful than searching an empty cookie jar. A database is only useful with respect to the information that it holds.
A database needs to be able to receive information for storage and to deliver information on request. For instance, the MemberDirectory database needs to be able to receive the member information, and it also needs to be able to deliver its stored information when you request it. If you want to know the address of a particular member, for example, the database needs to deliver that information when you request it.
Your MySQL database responds to four types of requests:
- Adding information: Adding a row to a table.
- Updating information: Changing information in an existing row. This includes adding data to a blank field in an existing row.
- Retrieving information: Looking at the data. This request does not remove data from the database.
- Removing information: Deleting data from the database.
No comments:
Post a Comment