码迷,mamicode.com
首页 >  
搜索关键字:color    ( 180498个结果
查看 SQL SERVER 的连接情况
1、查看连接到‘TestDB2’数据库的连接 select * from master.dbo.sysprocesses where dbid = DB_ID('TestDB2') *查询某个数据库用户的连接情况 sp_who 'sa' 2、查看数据库允许的最大连接 select @@MAX_CON... ...
分类:数据库   时间:2020-09-17 17:37:42    阅读次数:48
如何测试SQL语句性能?
一、用如下语句找出sql到底是在哪里慢了 示例: SET STATISTICS io ON SET STATISTICS time ON go 你要测试的sql语句 select top 100 * from TBL_Cot_RecStaticList go SET STATISTICS profi ...
分类:数据库   时间:2020-09-17 17:34:16    阅读次数:40
Qt设置控件透明度
QSS中 QLabel { background-color: rgba(255, 255, 224, 50%); border: 2px solid black; } 0%表示全透明,100%表示不透明 ...
分类:其他好文   时间:2020-09-17 17:29:08    阅读次数:20
kickstart+dhcp+pxe+tftp+http
![](https://s4.51cto.com/images/blog/202009/06/d4ddac749353573075f738c8a5380594.png?x-oss-process=image/watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3p
分类:Web程序   时间:2020-09-17 17:21:23    阅读次数:37
cobbler
![](https://s4.51cto.com/images/blog/202009/06/63b246e94a561ea6529877dd813bd3c3.png?x-oss-process=image/watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3p
分类:其他好文   时间:2020-09-17 17:21:06    阅读次数:22
java instanceof 判断是否是String
if(formbean.getBean().get("RZZGMCM") instanceof String){ formbean.getBean().put("RZZGMCM_ARR", (formbean.getBean().get("RZZGMCM").toString().split("," ...
分类:编程语言   时间:2020-09-17 17:13:46    阅读次数:32
【leetcode】罗马数字转整数
int romanToInt(char * s){ int* hash = (int*)calloc(26,sizeof(int)); hash['I'-65] = 1; hash['V'-65] = 5; hash['X'-65] = 10; hash['L'-65] = 50; hash['C' ...
分类:其他好文   时间:2020-09-17 17:09:44    阅读次数:20
<随便写>Python实现斗地主
''' 斗地主:v1.0 ''' import random def creat_poker(): # 扑克9种:2-10 poker_num = [str(i) for i in range(2, 11)] # 剩下的4种 poker_str = ['A', 'J', 'Q', 'K'] # 2个 ...
分类:编程语言   时间:2020-09-17 17:07:42    阅读次数:27
windows时间同步
windows时间同步小脚本: @echo off net stop w32time net start w32time w32tm /config /manualpeerlist:时间服务器IP /syncfromflags:manual /update ...
分类:Windows程序   时间:2020-09-17 17:00:55    阅读次数:47
docker centos PHP7.2 安装 bcmath数学扩展
1. 登录服务器 2. 登录docker docker exec -it ***容器名*** /bin/bash 3. 查看 PHP版本 php -v 4. 查找扩展包 yum search bcmath 5 选择版本并安装 yum install php72-php-bcmath.x86_64 6 ...
分类:Web程序   时间:2020-09-17 16:58:55    阅读次数:47
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!