Hi..
I am Inserting into a Table with sql interperter

Create table myemployees_sp1511
(firstname varchar(15),
Lastname varchar(20),
Title varchar(10),
Age number(3),
Salary number(8,2));


myemployees_sp1511 created:
firstname Lastname Title Age Salary


insert into
myemployees_sp1511
(firstname, lastname,
title, age, salary)
values ('Jonie', 'Weber',
'Sec', 28,
19500);



Error occured. Recheck your SQL statement


could any one tell me where i am wrong..why i am not able to insert into the table.

Rgds
Geeta