--建库if exists(select * from sysdatabases where name = 'stuDB')drop database stuDBCreate database stuDBon primary( name = 'stuDB', filename = 'E:\work\...
分类:
数据库 时间:
2014-08-27 18:00:58
阅读次数:
340
一、Hello, world!在linux下输入:(以hello.c为例)首先选中文件要保存的路径(如:cd work)vi hello.c(要编辑的文件名)输入程序:# includeint main(void) { printf("hello,world!\n"); return 0; 注:re...
分类:
系统相关 时间:
2014-08-27 12:27:27
阅读次数:
346
1。下载 下载地址:http://ant.apache.org/bindownload.cgi2。解压 cd/home/work/ant/ tar -zxvf apache-ant-1.8.1-bin.tar.gz 3。配置环境变量 ~/.bashrc# .bashrc# User specifi....
分类:
系统相关 时间:
2014-08-26 11:31:05
阅读次数:
319
Web components, like most objects, usually work with other objects to accomplish their tasks. Web components can do so by doing the following.
Using private helper objects (for example, JavaBeans...
分类:
编程语言 时间:
2014-08-26 09:55:05
阅读次数:
340
模式说明当一个对象的内在状态改变时允许改变其行为,这个对象看起来像是改变了其类。模式结构图程序示例说明:程序员一天不同时刻的状态代码:import timeclass IState(object): def work(self): passclass Programer(obje...
分类:
其他好文 时间:
2014-08-25 18:27:15
阅读次数:
259
window7 jdk1.6.0_14 Solr-4.7.2tomcat-6.0.37Solr的安装配置Solr home ,主要介绍基于JNDI的配置,其它方式可以参考Solr的wiki。基于JNDI配置1:首先建立一个Solr的运行目录。C:\solr-tomcat将解压缩包中的D:\work....
分类:
其他好文 时间:
2014-08-24 05:29:24
阅读次数:
321
DartsTime Limit:1000MSMemory Limit:65536KTotal Submissions:58Accepted:32Special JudgeDescriptionAfter a long week of work at the ICPC Headquarters, Bi...
分类:
其他好文 时间:
2014-08-24 01:30:21
阅读次数:
215
主页: http://www.zhornsoftware.co.uk/stickies/index.htmlStickies work like Post-it notes for your PC. Notes can be customized and saved as styles, inclu...
/*
很明显的最大权闭合图题
*/
#include
#include
#include
using namespace std;
#define N 2100
#define inf 0x3fffffff
struct node {
int u,v,w,next;
}bian[N*N*20];
int head[N],yong,dis[N],work[N];
void init(){
yong=...
分类:
其他好文 时间:
2014-08-23 16:51:11
阅读次数:
251
WINDOWS环境下的解决方法: 1: 下载sqlite3数据库工具,放置于SVN的同级目录 2: CMD路径转移到Sqlite3目录 3: 残留操作选择:sqlite3 .svn/wc.db "select * from work_queue" 4: 残留操作删除:sqlite3 .svn...
分类:
数据库 时间:
2014-08-22 23:50:49
阅读次数:
461