02 2022 档案
摘要:重写app.xaml protected override void OnStartup(StartupEventArgs e) { Config.mutex = new System.Threading.Mutex(true, "OnlyRun_mySW"); if (Config.mutex.W
阅读全文
摘要:项目结构是web层,cli层以及c++层 正常引用,会报未能加载文件或程序集“xxxx.DLL”或它的某一个依赖项。找不到指定的模块。 目前找到2种解决方法 第一种ASP.NET与非托管DLL的那些事儿 - yeahgis - 博客园 (cnblogs.com) 第二种:编译c++项目时,编译为静态
阅读全文
摘要:转载Flex 布局示例 (vgee.cn) Flex 布局示例 感谢阮一峰老师的教程http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html 本示例将教程上所有的布局都简单的实现了一遍,并保存GitHub上面 https://github.co
阅读全文
摘要:需要根据某个字段进行去重,但是会报错, Expression #1 of ORDER BY clause is not in SELECT list, references column 'a.time' which is not in SELECT list; this is incompatib
阅读全文
摘要:普通索引 ALTER TABLE tablename ADD INDEX index_name1 ( column_name ) 单字段唯一约束 alter table tablename add unique(column_name) 多字段唯一约束 alter table tablename a
阅读全文