上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 25 下一页
摘要: /// <summary> /// xml工具类 /// </summary> public class XmlHelper { /// <summary> /// 序列化xml /// </summary> /// <typeparam name="T"></typeparam> /// <par 阅读全文
posted @ 2021-07-21 11:17 博客YS 阅读(134) 评论(0) 推荐(0)
摘要: /// <summary> /// 父子类属性赋值 /// </summary> /// <typeparam name="D">空实体类</typeparam> /// <typeparam name="S">有值实体类</typeparam> /// <param name="s">有值实体类< 阅读全文
posted @ 2021-07-20 17:54 博客YS 阅读(137) 评论(0) 推荐(0)
摘要: /// <summary> /// 过滤 /// </summary> /// <param name="sender"></param> private void Filter(object sender) { DevExpress.XtraEditors.GridLookUpEdit edit 阅读全文
posted @ 2021-07-15 18:26 博客YS 阅读(333) 评论(0) 推荐(0)
摘要: private DataSet ConvertXMLToDataSet(string xmlData) { StringReader stream = null; XmlTextReader reader = null; DataSet xmlDs = new DataSet(); try { Xm 阅读全文
posted @ 2021-07-09 17:42 博客YS 阅读(96) 评论(0) 推荐(0)
摘要: /************************************************* * 描述: * * Author:ys * Date:2022/4/13 15:24:25 * Update: * ***************************************** 阅读全文
posted @ 2021-07-06 17:41 博客YS 阅读(1915) 评论(0) 推荐(0)
摘要: 1.--语法:create user 用户名 identified by 密码,--创建用户,用户名是admin,密码是admin 例子:create user admin identified by admin ; 2.--语法grant connect to 用户名 --授予connect权限 阅读全文
posted @ 2021-07-02 22:05 博客YS 阅读(739) 评论(1) 推荐(0)
摘要: //gcInterface为控件名称 if (gcInterface.InvokeRequired) { gcInterface.BeginInvoke((MethodInvoker)delegate { dtConfig.Rows[index]["count"] = count; dtConfig 阅读全文
posted @ 2021-06-27 16:23 博客YS 阅读(60) 评论(0) 推荐(0)
摘要: private void IEClient_FormClosing(object sender, FormClosingEventArgs e) { if (e.CloseReason == CloseReason.UserClosing) { e.Cancel = true; this.Hide( 阅读全文
posted @ 2021-06-27 16:00 博客YS 阅读(31) 评论(0) 推荐(0)
摘要: /// <summary> /// 拷贝赋值子类 /// </summary> /// <param name="list"></param> /// <returns></returns> private static List<JHCDR_LAB_REPORT_Vo> AutoCopy(List 阅读全文
posted @ 2021-06-21 14:49 博客YS 阅读(201) 评论(0) 推荐(0)
摘要: --导出数据库 --exp JHICU/JHICU@192.168.0.93/ORCL file=D:\JHICU.dmp full=y log=D:\log.txt exp 登录名/登录密码@链接IP/实例 file=D:\JHICU.dmp full=y log=D:\log.txt --导入数 阅读全文
posted @ 2021-06-18 19:38 博客YS 阅读(59) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 25 下一页