ASP入门基础教程:Command对象的方法--Execute
2015-11-10编辑:ljnbset
Command 对象的方法----Execute
该方法执行在 CommandText 属性中指定的查询。语法格式分为以下两种形式。
1、对于按行返回的 Command :
Set recordset=command.Execute(RecordsAffected,Parameters,Options)
2、对于不按行返回的 Command :
command.Execute RecordsAffected,Parameters,Options
其中参数 RecordsAffected 为提供程序返回操作所影响的记录数录。Rarameters 为使用 SQL 语句传送的参数值。Options 指示提供程序如何对 Command 对象的 CommandText 属性赋值。