SoftSqlOperateExecuteSelectObjectT 方法 (String, String) |
更新指定类型数据执行SQL语句,并返回指定类型的数据集合,该方法应该放到try-catch代码块中
命名空间:
HslCommunication.BasicFramework
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static T ExecuteSelectObject<T>(
string conStr,
string cmdStr
)
where T : new(), ISqlDataType
Public Shared Function ExecuteSelectObject(Of T As {New, ISqlDataType}) (
conStr As String,
cmdStr As String
) As T
public:
generic<typename T>
where T : gcnew(), ISqlDataType
static T ExecuteSelectObject(
String^ conStr,
String^ cmdStr
)
static member ExecuteSelectObject :
conStr : string *
cmdStr : string -> 'T when 'T : new() and ISqlDataType
参数
- conStr
- 类型:SystemString
数据库的连接字符串 - cmdStr
- 类型:SystemString
sql语句,选择数据表的语句
类型参数
- T
[缺少 "M:HslCommunication.BasicFramework.SoftSqlOperate.ExecuteSelectObject``1(System.String,System.String)" 的 <typeparam name="T"/> 文档]
返回值
类型:
T结果数据
异常 异常 | 条件 |
---|
SqlException | |
InvalidOperationException | |
参见