摘要:
脚本 SELECT a.name, b.rows FROM sysobjects AS a INNER JOIN sysindexes AS b ON a.id = b.id WHERE (a.type = 'u') AND (b.indid IN (0, 1)) ORDER BY a.name,b 阅读全文
摘要:
原文地址:https://www.cnblogs.com/xilipu31/p/3993049.html using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; u 阅读全文
摘要:
用cmd远程能访问,但是用代码访问不了 redis-cli -h ip -p 端口 -a 密码 然后改链接"RedisConnectionString": "ip:端口,password=密码,abortConnect=false" 这个abortConnect=false很重要,没有就报错 It 阅读全文
摘要:
递归所有控件并将每个控件的Click()事件连接到同一个处理程序.从那里调用InvokeOnClick().现在单击任何内容将触发主UserControl的Click()事件 public partial class UserControl2 : UserControl { public UserC 阅读全文
摘要:
RESTORE DATABASE [loudi] FROM DISK = N'D:\SqlServiceData\Loudi20210930\2021_09_30_224500_9096001.bak' WITH replace, MOVE N'loudibak' TO N'D:\Program F 阅读全文
摘要:
public class AutoClosingMessageBox { System.Threading.Timer _timeoutTimer; string _caption; AutoClosingMessageBox(string text, string caption, int tim 阅读全文