Hi Pwoneill,

ok i will explain whats my problem

i have a table with one column

SQL> desc test;
Name Null? Type
----------------------------------------------------- -------- -----------------
NAME VARCHAR2(10)


if want to insert a row i will insert like this

insert into test values ('vas');
one will be created

like this if i want to insert 10 rows , i have to insert 10 times like above. in my case it is hitting the database (server side) 10 times. so what my question is can we insert those 10 rows with a single statement ?

i think you got my question

for any help thank you

SrinivasM