SET nocount ON USE tempdbgo IF ( OBJECT_ID('t1') IS NOT NULL ) DROP TABLE t1CREATE TABLE t1 ( n INT )INSERT INTO t1 SELECT 2 UNIO...
分类:
数据库 时间:
2014-07-12 00:46:24
阅读次数:
262
举一个容易犯错的例子class Date{private: int month; int day; int year;public:Date(int month,int day,int year){ this->month = month; ... }}//wrong exampleDa...
分类:
编程语言 时间:
2014-07-12 00:13:54
阅读次数:
235
1 USE [test] 2 GO 3 /****** Object: StoredProcedure [dbo].[PageIndex] Script Date: 12/07/2011 10:26:36 ******/ 4 SET ANSI_NULLS ON 5 GO 6 SET QUOT...
分类:
数据库 时间:
2014-07-11 21:22:32
阅读次数:
615
Linux SkillsLinux SkillsTable of Contents1. How to use ramdisk in Ubuntu and Fedora?2. How to enable ssh server in Ubuntu?3. How to disable CPU in Lin...
分类:
系统相关 时间:
2014-07-11 18:37:30
阅读次数:
528
关于局域网中共享文件无权限打开的解决方法: net use * /del 删除网络用户 net use \\IP地址 "password" /user:用户名
分类:
其他好文 时间:
2014-07-11 18:04:32
阅读次数:
188
Describe how you could use a single array to implement three stacks.Divide the array into three fixed parts, each stands for a stack./*Fixed Size Stac...
分类:
其他好文 时间:
2014-07-11 10:45:34
阅读次数:
189
用户管理mysql>use mysql;查看mysql> select host,user,password fromuser;创建mysql> create user zx_root IDENTIFIEDby 'xxxxx'; //identified by 会将纯文本密码加密作为散列值存储修改....
分类:
数据库 时间:
2014-07-11 10:43:34
阅读次数:
255
When using MacOS with xcode6-beta, i always meet these error:xcrun: error: active developer path ("/Volumes/Xcode/Xcode6-Beta.app/Contents/Developer")...
分类:
移动开发 时间:
2014-07-11 10:04:53
阅读次数:
244
1、andriod gradle插件版本过低。
出错位置:
dependencies{
classpath 'com.android.tools.build:gradle:0.10.2'
}
提示信息:You must use a newer version of the Android Gradle plugin. The minimum supported version is ...
分类:
其他好文 时间:
2014-07-09 10:43:51
阅读次数:
230