摘要: insert into DEPOSITORY (id, name, Createtime, Createuser, Ismodified, Modifytype, ischecked, Remarks)values (6, 'aaa',sysdate,//sysdate即为数据库时间 'bbb', 1, 0, 0, '') 阅读全文
posted @ 2013-05-22 15:13 忆如梨花 阅读(457) 评论(0) 推荐(0) 编辑
摘要: string sql = "update systemperiod set start_date=to_date('" + time + "','yyyy-mm-dd hh24:mi:ss') where id =" + this.ID; 阅读全文
posted @ 2013-05-22 15:12 忆如梨花 阅读(415) 评论(0) 推荐(0) 编辑
摘要: DevExpress.XtraGrid.StyleFormatCondition cn; cn = new DevExpress.XtraGrid.StyleFormatCondition(DevExpress.XtraGrid.FormatConditionEnum.Equal, gridView1.Columns["列名"], null, 值, 值, true); cn.Appearance.BackColor = Color.Gray; gridView1.FormatConditions.Add(cn); 阅读全文
posted @ 2013-05-22 14:38 忆如梨花 阅读(1226) 评论(0) 推荐(0) 编辑