Answer posted by Dan Letecky [DayPilot]
9 years ago.

Management of doctors is not implemented in this tutorial. The doctor data is stored in the database, in a table called "doctor":

CREATE TABLE doctor (
    doctor_id   INTEGER       PRIMARY KEY AUTOINCREMENT NOT NULL,
    doctor_name VARCHAR (100) NOT NULL
    );

You can simply modify that table to add/remove/delete doctors.

Comment posted by Anonymous
8 years ago.

can you provide an solution for this

This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.