The DataTable is a central object in the ADO.NET library. Other objects that use the DataTable include the DataSet and the DataView.When accessing Dat...
分类:
其他好文 时间:
2014-08-02 15:14:03
阅读次数:
254
equals方法对比的是元素的值,可以hashcode不同, 但是如果我们override了自己的equals方法同时也应该重载hashcode方法。假设有obj1和obj2相等, 这时候obj1作为key放入map后,用obj2作为key来获取obj1存入的对象...
分类:
其他好文 时间:
2014-08-02 10:09:23
阅读次数:
170
the Gemfire consultant add one more parameter to JVM -Djava.nio.channels.spi.SelectorProvider=sun.nio.ch.EPollSelectorProvider to be honest, I had no idea what it was. so I googled it. the key thin...
分类:
编程语言 时间:
2014-08-02 01:57:13
阅读次数:
235
1、背景 1.1 Redis简介 官方网站:http://redis.io/,Redis是REmote DIctionary Server的缩写。 Redis是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言...
分类:
其他好文 时间:
2014-08-01 23:24:42
阅读次数:
631
如果我们有一个表Student,包含下面字段与数据:drop table student;create table student(id int primary key,name nvarchar2(50) not null,score number not null);insert into st...
分类:
其他好文 时间:
2014-08-01 22:57:42
阅读次数:
318
json数据格式在网络中传输需要的数据比二进制庞大太多,我们可以省去key,外加将数字不需要编码成字符串,直接二进制编码就OK。
pack : 将json压包,unpack解包成json。
var Struct = module.exports = {};
Struct.TYPE = {
int8:1,
int16:2,
int32:3,
uint8:4,
uint16:...
分类:
Web程序 时间:
2014-08-01 16:14:41
阅读次数:
360
CREATE TABLE "ADMINISTRATOR"."CK_ROLE" ("RO_ID" SMALLINT primary key NOT NULL generated always as identity(start with 1,increment by 1), "...
分类:
数据库 时间:
2014-08-01 15:49:11
阅读次数:
259
查找树是一种数据结构,二叉查找树是按二叉树结构来组织的。可以用链表结构表示,其中每一个结点就是一个对象。结点中包括:key、数据、left、right、p。其中left、right和p分别指向左儿子,右儿子和父结点。 二叉查找树中的关键字总是满足二叉查找树的性质:y是x左子树上的结点,则key...
分类:
其他好文 时间:
2014-08-01 15:31:41
阅读次数:
219
常见的键盘事件是keyup和keydown。淡蓝就经常用document.onkeyup = function (e) { if ((e.keyCode || e.which) === 13) // 对enter键按下后释放的处理,常用来做登录按钮事件 };废话不多说,进入正题。和key...
分类:
其他好文 时间:
2014-08-01 13:28:01
阅读次数:
210
1. 免费SSL证书申请https://www.startssl.com教程:http://hxs.fd.fj.cn/?action=show&id=132. 证书转换申请到的证书有两个关键文件(适用于openssl文本格式), xxx.key & xxx.crt,要在IIS上安装需要转换成pfx格...
分类:
Web程序 时间:
2014-08-01 10:47:01
阅读次数:
197