会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
yuanshuo
不积跬步无以至千里
新随笔
管理
随笔- 241 文章- 20 评论- 7 阅读-
15万
上一页
1
···
7
8
9
10
11
12
13
14
15
···
25
下一页
2021年6月18日
Oracle数据库导入(数据泵导)
摘要: (准备工作)首先在需要导入的数据库中以管理员身份执行以下命令: 由于工作原因需要经常在本地环境倒库,所以每次倒库都会根据数据库用途重新创建用户及表空间,方便切换和管理 –1. 创建用户并设置密码 create user (userName) identified by (userPassword);
阅读全文
posted @ 2021-06-18 19:33 博客YS
阅读(942)
评论(0)
推荐(0)
编辑
2021年6月15日
C# 根据WCF 的url动态调用WCF
摘要: #region Wcf服务工厂 public static T CreateWCFServiceByURL<T>(string url) { return CreateWCFServiceByURL<T>(url, "basichttpbinding"); } #endregion public s
阅读全文
posted @ 2021-06-15 09:25 博客YS
阅读(290)
评论(0)
推荐(0)
编辑
2021年6月10日
winform嵌套浏览器
摘要: private void Form2_Load(object sender, EventArgs e) { //webBrowser1.IsWebBrowserContextMenuEnabled = true; //webBrowser1.AllowNavigation = true; //web
阅读全文
posted @ 2021-06-10 18:21 博客YS
阅读(336)
评论(0)
推荐(0)
编辑
2021年6月8日
动态调用WebService(封装)
摘要: 1.添加引用System.Web.Services 2、封装代码 /************************************************* * 描述: * * Author:ys * Date:2021/6/8 16:22:38 * Update: * *********
阅读全文
posted @ 2021-06-08 16:33 博客YS
阅读(255)
评论(0)
推荐(0)
编辑
2021年6月2日
DevExpress GridControl控件绑定ID显示别的内容
摘要: /// <summary> /// 未安排列表赋值 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void GVBeforeSchedule_CustomUnboundCol
阅读全文
posted @ 2021-06-02 16:15 博客YS
阅读(161)
评论(0)
推荐(0)
编辑
2021年6月1日
遍历实体类并给实体类赋值
摘要: //获取数据 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
阅读(436)
评论(0)
推荐(0)
编辑
根据地址调用WebServices
摘要: 1.添加引用 2.封装代码 /************************************************* * 描述: * * Author:ys * Date:2021/6/1 15:36:38 * Update: * ****************************
阅读全文
posted @ 2021-06-01 16:05 博客YS
阅读(122)
评论(0)
推荐(0)
编辑
2021年5月8日
单表清除重复数据
摘要: 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
阅读(64)
评论(0)
推荐(0)
编辑
2021年4月22日
调用webApi封装
摘要: /// <summary> /// 调用Api(Post请求) /// </summary> /// <param name="url">api地址</param> /// <param name="body">参数</param> /// <returns></returns> public Re
阅读全文
posted @ 2021-04-22 18:17 博客YS
阅读(104)
评论(0)
推荐(0)
编辑
2021年4月15日
简单写入本地日志,日志文件位置与主程序exe位置相同
摘要: /// <summary> /// 写入本地日志 /// </summary> /// <param name="strText">日志内容</param> /// <param name="logPath">日志路径</param> /// <param name="fileName">日志文件名
阅读全文
posted @ 2021-04-15 14:16 博客YS
阅读(110)
评论(0)
推荐(0)
编辑
上一页
1
···
7
8
9
10
11
12
13
14
15
···
25
下一页
<
2025年1月
>
日
一
二
三
四
五
六
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
点击右上角即可分享