con.execute "CREATE tblImg (lngId COUNTER PRIMARY
KEY, binImg IMAGE)"set
ads=createobject("adodb.stream")ads.type=1ads.mode=3ads.openads.loadFromFile ...
分类:
数据库 时间:
2014-05-08 19:26:02
阅读次数:
376
SELECT A.TABLE_NAME 表英文名, A.TAB_COMMENTS 表中文名,
A.COLUMN_ID 序号, A.COLUMN_NAME 英文名, A.COMMENTS 中文名, B.PRIMARY_KEY 主键,
substr(A.DATA_TYPE,1,instr(A.DATA_...
分类:
数据库 时间:
2014-05-08 19:25:11
阅读次数:
415
基于回调的事件处理机制更加的灵活,可以控制到KeyEvent对象。
分类:
移动开发 时间:
2014-05-08 13:47:54
阅读次数:
363
string sKey = username.Text.ToString().Trim(); //
得到Cache中的给定Key的值 string sUser = Convert.ToString(Cache[sKey]); // 检查是否存在 if
(sUser == null || sUser....
分类:
其他好文 时间:
2014-05-08 12:18:20
阅读次数:
258
DES安全编码组件
支持 DES、DESede(TripleDES,就是3DES)、AES、Blowfish、RC2、RC4(ARCFOUR)
DES key size must be equal to 56
DESede(TripleDES) key size must be equal to 112 or 168
AES key ...
分类:
其他好文 时间:
2014-05-07 21:42:35
阅读次数:
514
联合索引又叫复合索引。对于复合索引:Mysql从左到右的使用索引中的字段,一个查询可以只使用索引中的一部份,但只能是最左侧部分。例如索引是key index
(a,b,c)。 可以支持a | a,b| a,b,c 3种组合进行查找,但不支持 b,c进行查找 .当最左侧字段是常量引用时,索引就十分有效...
分类:
数据库 时间:
2014-05-07 14:27:50
阅读次数:
386
主键 (Primary Key)
中的每一笔资料都是表格中的唯一值。换言之,它是用来独一无二地确认一个表格中的每一行资料。主键可以是原本资料内的一个栏位,或是一个人造栏位
(与原本资料没有关系的栏位)。主键可以包含一或多个栏位。当主键包含多个栏位时,称为组合键 (Composite Key)。主键可...
分类:
其他好文 时间:
2014-05-07 14:08:41
阅读次数:
292
#xml
api:http://www.cnblogs.com/lhj588/archive/2011/11/09/2242483.html#dictionary
operations: key in dict....from xml.dom import minidom, Nodedoc = mi...
分类:
编程语言 时间:
2014-05-07 11:01:12
阅读次数:
602
配置rndc.conf 命令:rndc-confgen >
/etc/bind/rndc.conf自动生成rndc.conf,内容如下:# Start of rndc.conf key "rndc-key" {
algorithm hmac-md5; secret "oYV+NSAXam...
分类:
其他好文 时间:
2014-05-07 01:45:13
阅读次数:
249
通过实现父类的方法
protected void onSaveInstanceState(Bundle outState)
{
super.onSaveInstanceState(outState);
String str = editText.getText().toString();
outState.putString("key", "message");
}
这样就保存到了B...
分类:
其他好文 时间:
2014-05-06 21:46:12
阅读次数:
405