上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 25 下一页
摘要: (准备工作)首先在需要导入的数据库中以管理员身份执行以下命令: 由于工作原因需要经常在本地环境倒库,所以每次倒库都会根据数据库用途重新创建用户及表空间,方便切换和管理 –1. 创建用户并设置密码 create user (userName) identified by (userPassword); 阅读全文
posted @ 2021-06-18 19:33 博客YS 阅读(924) 评论(0) 推荐(0) 编辑
摘要: #region Wcf服务工厂 public static T CreateWCFServiceByURL<T>(string url) { return CreateWCFServiceByURL<T>(url, "basichttpbinding"); } #endregion public s 阅读全文
posted @ 2021-06-15 09:25 博客YS 阅读(277) 评论(0) 推荐(0) 编辑
摘要: private void Form2_Load(object sender, EventArgs e) { //webBrowser1.IsWebBrowserContextMenuEnabled = true; //webBrowser1.AllowNavigation = true; //web 阅读全文
posted @ 2021-06-10 18:21 博客YS 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 1.添加引用System.Web.Services 2、封装代码 /************************************************* * 描述: * * Author:ys * Date:2021/6/8 16:22:38 * Update: * ********* 阅读全文
posted @ 2021-06-08 16:33 博客YS 阅读(248) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 未安排列表赋值 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void GVBeforeSchedule_CustomUnboundCol 阅读全文
posted @ 2021-06-02 16:15 博客YS 阅读(154) 评论(0) 推荐(0) 编辑
摘要: //获取数据 string sql =$@" select t.* from PushPlatformDatas t.id={caseid} "; using (OracleDataReader drs = OracleHelper.ExecuteReader(sql, System.Data.Co 阅读全文
posted @ 2021-06-01 17:17 博客YS 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 1.添加引用 2.封装代码 /************************************************* * 描述: * * Author:ys * Date:2021/6/1 15:36:38 * Update: * **************************** 阅读全文
posted @ 2021-06-01 16:05 博客YS 阅读(121) 评论(0) 推荐(0) 编辑
摘要: delete from 表名 a where 列名 in ( select t.列名 from (select 列名 ,count(*) from 表名 where 列名 is not null group by 列名 having count(*) > 1) t ) 阅读全文
posted @ 2021-05-08 17:12 博客YS 阅读(63) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 调用Api(Post请求) /// </summary> /// <param name="url">api地址</param> /// <param name="body">参数</param> /// <returns></returns> public Re 阅读全文
posted @ 2021-04-22 18:17 博客YS 阅读(102) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 写入本地日志 /// </summary> /// <param name="strText">日志内容</param> /// <param name="logPath">日志路径</param> /// <param name="fileName">日志文件名 阅读全文
posted @ 2021-04-15 14:16 博客YS 阅读(103) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 25 下一页