J
Johnny98
I have created a stored procedure which I run using a pass-through query.
The update only works if I hard code the values I am passing. How can I pass
text box values to the stored procedure so that the query is dynamic?
The name of my stored procedure is 'insert_records', and this is what I
would like to be able to pass:
begin
insert_records(txtBox1.value,txtBox2.value, txtBox3.value, txtBox4.value);
end;
Any help would be greatly appreciated!
Thanks,
Johnny
The update only works if I hard code the values I am passing. How can I pass
text box values to the stored procedure so that the query is dynamic?
The name of my stored procedure is 'insert_records', and this is what I
would like to be able to pass:
begin
insert_records(txtBox1.value,txtBox2.value, txtBox3.value, txtBox4.value);
end;
Any help would be greatly appreciated!
Thanks,
Johnny