标签:blog http ar sp on art log bs as
public override void PreExecute(IDbCommand cmd)
{
//cmd.GetType().GetProperty("BindByName").SetValue(cmd, true, null);
PropertyInfo bindByNameInfo = cmd.GetType().GetProperty("BindByName");
}
行:4124-4128
http://blog.csdn.net/littlewolf766/article/details/10630141
//<#@ import namespace="System.Data.OracleClient" #>
//<#@ import namespace="Oracle.ManagedDataAccess.Client" #>
//using System.Data.OracleClient;
//using Oracle.ManagedDataAccess.Client;
const string COLUMN_SQL=@"select table_name TableName,
column_name ColumnName,
data_type DataType,
data_scale DataScale,
nullable IsNullable
from USER_TAB_COLS utc
where table_name = :tableName
and hidden_column=‘NO‘
order by column_id";
}
//and virtual_column=‘NO‘
//and data_type!=‘RAW‘
标签:blog http ar sp on art log bs as
原文地址:http://www.cnblogs.com/zwei1121/p/4081280.html