| | |
| | | public static int Insert(Grid grid) |
| | | { |
| | | string sql = "insert into grid (json) values (@json);select last_insert_rowid();"; |
| | | SQLiteParameter[] sqlParams = ModelDAL.GetParams<Grid>(sql, grid); |
| | | SQLiteParameter[] sqlParams = Tools.GetSQLiteParams<Grid>(sql, grid); |
| | | |
| | | object obj = SQLiteHelper.ExecuteScalar(sql, sqlParams); |
| | | return null == obj ? 0 : Convert.ToInt32(obj); |
| | |
| | | public static int UpdateById(Grid grid) |
| | | { |
| | | string sql = "update grid set json = @json where id = @id"; |
| | | SQLiteParameter[] sqlParams = ModelDAL.GetParams<Grid>(sql, grid); |
| | | SQLiteParameter[] sqlParams = Tools.GetSQLiteParams<Grid>(sql, grid); |
| | | |
| | | return SQLiteHelper.ExecuteNonQuery(sql, sqlParams); |
| | | } |