2022年4月19日
摘要: SqlSugarClient db = new SqlSugarClient(new ConnectionConfig() { ConnectionString = ConfigurationManager.ConnectionStrings["SFIS1"].ToString(), //必填 Db 阅读全文
posted @ 2022-04-19 14:13 Apeak 阅读(147) 评论(0) 推荐(0)
摘要: 1.DataGridView 绑定 list var queryResult = db.Queryable<C_MODEL_DESC_T>().ToList(); dgv_data.DataSource = queryResult; var pp= dgv_data.DataSource as Li 阅读全文
posted @ 2022-04-19 14:09 Apeak 阅读(534) 评论(0) 推荐(0)
  2022年3月10日
摘要: 转自:https://www.169it.com/blog_article/4142274388.html 1、control是要定义右键菜单的控件。 private void control_MouseDown(object sender, MouseEventArgs e) { if (e.Bu 阅读全文
posted @ 2022-03-10 09:53 Apeak 阅读(201) 评论(0) 推荐(0)
  2022年2月16日
摘要: 命令:grant xxx权限 on Table to USERgrant select,insert,update,delete,all on a.表名 to 用户名例如:将test表的查询权限赋予tom这个用户grant select on a.test to b 阅读全文
posted @ 2022-02-16 15:02 Apeak 阅读(40) 评论(0) 推荐(0)
  2022年1月26日
摘要: 開始->-輸入:Computer Management ->SystemTools ->Event Viewer -> Windows Logs ->Application 阅读全文
posted @ 2022-01-26 10:32 Apeak 阅读(19) 评论(0) 推荐(0)
  2021年10月14日
摘要: cmd : C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Installutil.exe serverce文件名;--安装serverce cmd : C:\Windows\Microsoft.NET\Framework64\v4.0.30319\I 阅读全文
posted @ 2021-10-14 16:06 Apeak 阅读(252) 评论(0) 推荐(0)
  2021年8月13日
摘要: https://blog.csdn.net/weixin_42176639/article/details/96164409 阅读全文
posted @ 2021-08-13 08:52 Apeak 阅读(20) 评论(0) 推荐(0)
  2021年6月26日
摘要: https://www.cnblogs.com/caogang/p/4546072.html 阅读全文
posted @ 2021-06-26 09:18 Apeak 阅读(35) 评论(0) 推荐(0)
  2021年6月22日
摘要: https://www.cnblogs.com/cncc/p/7170951.html using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.D 阅读全文
posted @ 2021-06-22 11:30 Apeak 阅读(259) 评论(0) 推荐(0)
  2021年5月6日
摘要: insert into tableName (x1,x2,x3,x4,x5,x6) select x1, x2, x3, x4, ' 你好', sysdate from tableName1 t where t.x1= 'x1_ss' 阅读全文
posted @ 2021-05-06 17:24 Apeak 阅读(275) 评论(0) 推荐(0)