摘要: 1、创建数据库Create database database_name;2、删除数据库Drop database db_name;3、sql server 备份backup database db_name to disk=';d:\dbn.aa';//指定需要备份数据库的路径和文件名;4、sql... 阅读全文
posted @ 2014-11-27 16:58 echo1006 阅读(177) 评论(0) 推荐(0) 编辑
摘要: void main(){ char *string="hello,world!"; printf("%s\n",string ); return;}例子:将字符串a复制成字符串b#include void main(){ char a[]="i am a boy",b[20]; int i; for... 阅读全文
posted @ 2014-11-27 15:10 echo1006 阅读(175) 评论(0) 推荐(0) 编辑
摘要: package test;import java.util.regex.Pattern;import java.util.concurrent.TimeUnit;import org.junit.*;import static org.junit.Assert.*;import static org... 阅读全文
posted @ 2014-11-27 12:02 echo1006 阅读(270) 评论(0) 推荐(0) 编辑