April 2026
Intermediate
1009 pages
34h 15m
English
A small application example follows here. It implements something very simple, but also commonplace and therefore relevant to practice. Despite the simple structure, all the essential elements of database programming are built into the functionality.
The guestbook entries are saved in a single table called guestbook. This consists of the fields shown in Table 18.1.
|
Field Name |
Data Type |
Description |
|---|---|---|
|
id |
INTEGER PRIMARY KEY* |
ID |
|
heading |
VARCHAR(1000) |
Title of the entry |
|
entry |
VARCHAR(5000) |
The actual entry |
|
author |
VARCHAR(50) |
Name of the registrant |
|
|
VARCHAR(100) |
Email address of the registrant |
|
date |
TIMESTAMP |
Time of entry |
|
*Depending on the database, ... | ||
Read now
Unlock full access