Among these methods for insert/update/delete operation,
-use recordset method
-use command method
-use con.execute
Which method is the best in terms of speed & efficiency for my ASP web
applcation ? Or any other better solution ?
Command Object + Stored Procedures is recommended.
Conn.Execute(strSQL) is next
Recordset is last
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: <huckkeon@t...>
Subject: [asp_databases] Connection Method
: Among these methods for insert/update/delete operation,
: -use recordset method
: -use command method
: -use con.execute
: Which method is the best in terms of speed & efficiency for my ASP web
: applcation ? Or any other better solution ?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~