摘要:
SDKMan: Can not install java 11.0.17-amzn at this time... (zenn.dev) bash-4.2# sdk list java Available Java Versions for Linux 64bit Vendor | Use | Ve 阅读全文
摘要:
错误信息: You are using "tasks’ which has been removed from the maven-antrun-plugin. Please use 'target' and refer to the >>Major Version Upgrade to versi 阅读全文
摘要:
SSIS 连接mysql 一般使用32位ODBC,下载链接地址:https://dev.mysql.com/downloads/connector/odbc/ 使用ADO.NET连接ODBC,配置好数据源,如下图: 注意事项,要在mysql里面执行: SET GLOBAL sql_mode='ans 阅读全文
摘要:
常看到死锁的问题,一般都是KILL进程,但如果不查出引起死锁的原因,死锁会时常发生 可以通过查找引起死锁的的操作,就可以方便的解决死锁,现将日常解决问题的方法总结,也许对大家有帮助 1\死锁发生时,通过如下语法,查询出引起死锁的操作 use master go declare @spid int,@bl int DECLARE s_cur CURSOR FOR select0 ,blocked from (select * from sysprocesses whereblocked>0 ) a where not exists(select * from (select * from 阅读全文
摘要:
在C#中使用SetParent加载子窗体,如果子窗体包含ToolStrip控件,上面的ToolStripButton的Click事件不触发!?解决中! /********************************************************/此问题已经得到解决// // The ToolStrip and MenuStrip classes are extended to allow customization of the user interface // // The following new boolean properties are exposed in 阅读全文