zoukankan
html css js c++ java
检查文件
create
table
#tb(a bit,b bit,c bit)
insert
into
#tb exec master..xp_fileexist 'c:\boot.ini '
--c:\boot.ini是要检查的文件名
if
exists(
select
*
from
#tb
where
a=
1
)
print '有该文件 '
else
print '无该文件 '
drop
table
#tb
查看全文
相关阅读:
Building a RESTful Web Service
Proxy setting
同步机制 note
C++: Virtual Table and Shared Memory
2018中国大学生程序设计竞赛
2018 MUltiU 9 dp / 8 upper_bound ; 构造?/
2018/8/10 部分枚举(类似尺取)
2018/8/9 MultiU 6 并查集+dfs,反向建边提高查询效率 !!! / 最大字段和n维(降维)/ 状压+中途相遇法
2018/7/29 cf 499 div 2(1011)
2018/7/28 欧拉路径
原文地址:https://www.cnblogs.com/qanholas/p/1861776.html
最新文章
红鼻子小鹿 歌词
信息爆炸无可适从症
.a文件.o文件和.so文件的区别
XSLT使用示例
程序员书籍推荐
读写sqlserver数据库
Access数据库操作
读、写、查XML函数
移动鼠标时按钮跟着移动
读写系统时间
热门文章
设置程序开机启动
读写Ini文件
模拟鼠标按下
鼠标移动到label控件时文字鼠标变为手型,并且文字显示灰色加下划线
《程序员的自我修养》读书笔记
C++: Perfect Forwarding
git: 常用功能等
Perforce: 常用功能。
Terminology: Sandbox
Java: some learning note for Java calssloader and Servlet
Copyright © 2011-2022 走看看