
Chapter 22
PROGRAMMING WITH ORACLE AND
SQL SERVER 2000
I
n the last chapter you learned how a project is developed in Visual Basic with
an MS Access database. Now we are going to work with an Oracle 8 database.
The project is the same that we developed with Access. We will discuss only
the changes that we have to make in the project while working with Oracle.
22.1 TABLE CREATION
Make a new user school with the password student and under this user create a
table student. The structure of the table is given below:
Field name Data type
ID Number (Primary key)
Name Varchar
AGE Number
STD_CLASS Varchar
ADMISSION_DATE Date
FATHER_MONTHLY_INCOME Number
413