Goal: Create the database table that will be used to create a Travel Request mobile business object.
| Field | Value |
|---|---|
| Parent folder | Select the MobileWorkflow101 project. |
| File name | Enter TravelRequest. |
| Database server type | Select Sybase_ASA_11.x. |
| Connection profile name | Select sampledb. |
| Database name | Select sampledb. |
CREATE TABLE TravelRequest (
trvl_Id integer NOT NULL DEFAULT autoincrement
,trvl_Date date NULL
,trvl_Loc varchar(20) NULL
,est_Cost float NULL
,purpose varchar(200) NULL
,trvl_Status varchar(20) NULL
,st_Cmmnt varchar(200) NULL
,PRIMARY KEY CLUSTERED (trvl_Id)
);