I currently have the ability to execute a sql statement, return the info, and use reader to parse the information. I would thought to use a SPROC to do this but, am having issues. When defining the sproc, how should I return the structure of the table? Return each and every column?
example:
CREATE PROCEDURE sp_test1 (id int,
test1 varchar2(15),
test3 varchar3(15))
BEGIN
SELECT id, test1, test3 FROM test_table
END;