尝试环境:.netfx2.0~4.8、.net core 3.1~5.0、SQL Server 2008 R2 SP1,发现.net版本之间及数据兼容模式如何设置没差异。 FlagNameValueDescription 1 DISABLE_DEF_CNST_CHK Controls interim ...
分类:
数据库 时间:
2021-01-07 11:43:58
阅读次数:
0
code from threading import Thread from multiprocessing import Process import os def work(name): print('{}的pid是'.format(name), os.getpid()) if __name__ ...
分类:
编程语言 时间:
2020-12-31 12:09:31
阅读次数:
0
code # 文件db的内容为:{"count":5} # 注意一定要用双引号,不然json无法识别 # 并发运行,效率高,但竞争写同一文件,数据写入错乱 from multiprocessing import Process,Lock import time,json,random def sea ...
分类:
系统相关 时间:
2020-12-31 12:02:45
阅读次数:
0
<el-form-item label="考试时长:" prop="testTimeLong"> <el-input-number style="width:110px" :min="0" v-model="ruleForm.testTimeLong" controls-position="righ ...
分类:
其他好文 时间:
2020-12-09 12:25:43
阅读次数:
4
Linux平台: 备份: sudo dd if=/dev/sdc | gzip>raspberry.gz 恢复: sudo gzip -dc raspberry.gz | sudo dd of=/dev/sdc MAC平台: 查看TF卡对应设备: diskutil list /dev/disk5 ( ...
分类:
其他好文 时间:
2020-11-17 12:28:36
阅读次数:
9
首先看官方给的文档。 添加一个TabPageView组件,可以看到TabPageView组件有自己的标签。 添加标签有两种方式: 1,手动添加 点击右上角的三角可以增添自己的标签。 2,动态添加: tabPageView1.Controls.Add(new Label { Text = "第一页" ...
分类:
移动开发 时间:
2020-11-16 13:15:17
阅读次数:
13
在WPF中。通过设置控件的tabindex值。通过获取当前光标所在的控件。然后下移 在xaml里面自定义控件的tabindex值 System.Windows.Controls.TextBox t = Keyboard.FocusedElement as System.Windows.Control ...
分类:
移动开发 时间:
2020-11-12 13:48:57
阅读次数:
17
23:59 我们趋行在人生这个亘古的旅途,在坎坷中奔跑,在挫折里涅槃,忧愁缠满全身,痛苦飘洒一地。我们累,却无从止歇;我们苦,却无法回避。 ——加西亚·马尔克斯 【人生十三信条】 1、节制:食不可过饱,饮不得过量。 2、缄默:避免?无谓闲扯,言谈必须对人有益。 3、秩序:生活物品要放置有序,工作时间 ...
分类:
其他好文 时间:
2020-09-18 17:11:55
阅读次数:
33
Remote Social Engineering SOCIAL ENGNEERING Tricking or coercing people into violating security policy Depends on willingness to be helpful Human weak ...
分类:
Web程序 时间:
2020-09-17 23:49:24
阅读次数:
48
日历控件是基于 Qt5.x 以上,导入 QtQuick.Controls.1.2 即可使用。在看我这篇博客之前,最好选择 Calendar 按 F1 查看 Qt Creator 的帮助文档,或者查看 Calendar 的官方文档所在网页,因为我这篇博客也基本上参考的官方文档,只是在其基础上写了个 D ...
分类:
其他好文 时间:
2020-09-17 18:20:52
阅读次数:
54