예제 #1
0
 private static SqlParameter GetQuerySqlParamter(QueryParamater qp, string queryValue, Int32 i)
 {
     return(new SqlParameter(string.Format("@{0}{1}", qp.QueryName, i), queryValue));
 }
예제 #2
0
 private static SqlParameter GetQuerySqlParamter(QueryParamater qp, Int32 i)
 {
     return(GetQuerySqlParamter(qp, qp.QueryValue, i));
 }