最近做一个项目。遇到了decimal 如何指定精度的问题 一般的指定参数 param = new SqlParameter(ParamName, DbType);但decimal就不能只通过构造函数来解决了,你需要生成Parameters的实例通过实例来设置精度,比如:SqlParameter pa ...
HOUTAI D public class UserDal { public int AddUser(User user) { SqlParameter[] parameters = new SqlParameter[] { new SqlParameter("@UserName",user.Use ...
分类:
其他好文 时间:
2018-11-22 16:12:22
阅读次数:
144
//参数 SqlParameter[] fparams = new SqlParameter[7]; fparams[0] = new SqlParameter("@ID", ID); fparams[1] = new SqlParameter("@VoucherAmt", VoucherAmt); ...
分类:
其他好文 时间:
2018-11-19 11:02:35
阅读次数:
161
l EF添加 DbContext db=new DbContext (); 1.db.对象.Add() db.SaveChanges() 2.SqlParameter[]参数化 db.DataBase.ExecuteSqlCommand("sql语句/存储过程",“参数”) 3.db.Set<对象> ...
分类:
其他好文 时间:
2018-10-31 21:17:07
阅读次数:
257
if (id != null) { sql = @"update [User] set Username = @Username, Password = @Password, Type = @UserType, FullName = @FullName, Telephone = @Telephone ...
分类:
数据库 时间:
2018-10-06 00:05:33
阅读次数:
209
关于Sql注入,经典的注入语句是' or 1=1-- 以下说说如何最大限度的避免注入问题。 一.SQL参数用法1 1.思维导图 2.示例代码 显然,Add方法在添加多个SqlParameter时不方便 二.SQL参数用法2 1.示例代码 ...
分类:
Web程序 时间:
2018-10-04 15:20:47
阅读次数:
165
新建一个表: create table abc ( id int IDENTITY(1,1) NOT NULL, name nvarchar(100) , sex nvarchar(10) ) insert into abc values(‘asf’,'男') insert into abc val ...
分类:
数据库 时间:
2018-09-02 18:35:50
阅读次数:
490
1 namespace DAL 2 { 3 public class DalHouse : IHouse 4 { 5 public int Add(HouseInfo m) 6 { 7 string sql = "pro_add"; 8 SqlParameter eid = new SqlParam ...
分类:
数据库 时间:
2018-08-24 13:32:34
阅读次数:
153
public static SqlParameter[] get_array_list(ArrayList rows) where T : class { Hashtable sql_add = new Hashtable(); Hashtable sql_update = new Hashtabl... ...
分类:
其他好文 时间:
2018-07-31 11:04:25
阅读次数:
148
public Pages<stuclass> GetStudetPage(PageParams pagePar) { int size = pagePar.PageSize; string sql = "[dbo].[p_paging]"; SqlParameter[] par = new SqlP ...
分类:
其他好文 时间:
2018-07-29 21:11:54
阅读次数:
147