Hello and thanks for your input<br><br>I've written a sp like this <br><br>create proc sp_myproc (@value1 int,@value2 int)<br>as<br><br>INSERT titles (value1,value2)<br>VALUES (@value1,@value2)<br><br>-- followed by<br><br>SELECT * FROM titles<br>return<br><br><br>/* I would like to return the select statement to an ADO recordset; the insert works but the recordset is not returned in ADO<br><br>How should this be done -- thanks<br><br>Regards<br>Andre S.<br>*/