How to write Stored procedure using select query and how to use it in vb.net

dineshchirayil

New member
Joined
Jan 24, 2007
Messages
4
Programming Experience
1-3
hi

i want to write a stored procedure which return a reocreds of tables.

still now i am not able to write a select query in Oracle stored preocedure.

i am also want to pass table name as parameter. is it posible..?

i am new to oracle databse. :confused: . i have toad in my system..using that i am able to create insert query in Storded procedure.but still now i am not able to create a stored precedure which return records..
can any one give one example ?
 
so, you want a procedure that selects all records from a table named as a parameter..

Why dont you just use SELECT * FROM table, as a normal sql?
 
Back
Top