一、创建数据库及表建立数据库createdatabasediccharactersetutf8;建表CREATETABLE`dic`(
`id`int(22)unsignedNOTNULLAUTO_INCREMENTCOMMENT‘id‘,
`principal`varchar(213)CHARACTERSETutf8NOTNULLCOMMENT‘负责人‘,
`use`varchar(222)CHARACTERSETutf8NOTNULLCOMMENT‘用途‘,
`t..
分类:
数据库 时间:
2015-06-06 23:48:42
阅读次数:
491
In this problem, we are asked to divide two integers. However, we are not allowed to use division, multiplication and mod operations. So, what else ca...
分类:
其他好文 时间:
2015-06-06 23:28:41
阅读次数:
170
MongoDB基本使用成功启动MongoDB后,再打开一个命令行窗口输入mongo,就可以进行数据库的一些操作。输入help可以看到基本操作命令:show dbs:显示数据库列表 show collections:显示当前数据库中的集合(类似关系数据库中的表) show users:显示用户use ...
分类:
数据库 时间:
2015-06-06 19:38:42
阅读次数:
134
DROP DATABASE IF EXISTS databaseWeb; -- 如果存在,则删除模式 databaseWebCREATE DATABASE databaseWeb CHARACTER SET utf8; -- 创建模式 databaseWeb。使用 utf8 编码USE databa...
分类:
数据库 时间:
2015-06-06 19:33:59
阅读次数:
141
做silverlight的查询(初始化数据,用的是RIA Service)时的代码:ThisDomainContext users = new ThisDomainContext();public void LoadData() { EntityQuery query = from t in use...
分类:
Web程序 时间:
2015-06-06 17:48:35
阅读次数:
118
How to use java annotation at runtime
分类:
编程语言 时间:
2015-06-06 16:25:11
阅读次数:
115
Skip lists are a data structure that can be used in place of balanced trees.Skip lists use probabilistic balancing rather than strictly enforced balan...
分类:
其他好文 时间:
2015-06-06 11:58:32
阅读次数:
204
题目描述
To store English words, one method is to use linked lists and store a word letter by letter. To save some space, we may let the words share the same sublist if they share the same suffix. For...
分类:
其他好文 时间:
2015-06-06 10:37:31
阅读次数:
169
#1 一:
net use \\ip\ipc$ " " /user:" " 建立IPC空链接
net use \\ip\ipc$ "密码" /user:"用户名" 建立IPC非空链接
net use h: \\ip\c$ "密码" /user:"用户名" 直接登陆后映射对方C:到本地为H:
net use h: \\ip\c$ 登陆后映射对方C:到本地为H:
net use \\ip\i...
分类:
其他好文 时间:
2015-06-06 09:17:02
阅读次数:
129