iconv [选项】文件输入/输出格式规范:-f, --from-code=名称 原始文本编码-t,
--to-code=名称 输出编码信息:-l, --list 列举所有已知的字符集输出控制:-c 从输出中忽略无效的字符-o, --output=FILE
输出文件-s, --silent 关闭警告...
分类:
系统相关 时间:
2014-04-28 10:09:36
阅读次数:
1431
索引(Index)是帮助mysql高效获取数据的数据结构。对于高性能非常关键。索引的重要性主要体现在数据量非常大的时候。规模小,负载轻的数据库即使没有索引也可以获到好的查询效果例如:1
mysql>select first_name from actor where actor_id=5;改索引列位...
分类:
数据库 时间:
2014-04-28 06:31:23
阅读次数:
959
using System;using
System.Collections.Generic;using System.ComponentModel;using System.Data;using
System.Drawing;using System.Linq;using System.Text;u...
分类:
Windows程序 时间:
2014-04-28 04:36:58
阅读次数:
1052
Sheet1$是Excel默认的第一个表名,如果改动:select * from
[Sheet1$]"将查询失败,因此应根据选择自动获取excel表名: 1 OpenFileDialog ofd = new OpenFileDialog();
//选择文件路径 2 ofd.Title = ...
分类:
Windows程序 时间:
2014-04-28 04:29:08
阅读次数:
1060
Oracle的数据字典表dba_objects包含了两个字段,object_id,
data_object_id,官方文档上的解释是:object_id: Dictionary object number of the
object.Data_object_id: Dictionary object...
分类:
数据库 时间:
2014-04-28 04:23:13
阅读次数:
725
一:由于在上一个随笔的基础之上拓展的所以直接上代码,客户端:using
System;using System.Collections.Generic;using System.ComponentModel;using
System.Data;using System.Drawing;using S...
分类:
Windows程序 时间:
2014-04-27 21:14:46
阅读次数:
1392
自己写的最新版本extjs4.2的树结点的操作,记录一下,以后可能会用到。
var tree = new Ext.tree.TreePanel({
flex: 1,
animate: true,
autoScroll: true,
anchor: '100% 93%',
store: new Ext.data.TreeStore({
root:{
expanded: true...
分类:
Web程序 时间:
2014-04-27 19:00:19
阅读次数:
1278
迅雷和qq旋风下载,有加速和离线功能,很方面,我是在网上看到的原始地址和迅雷地址,qq旋风地址的转化原理,然后用python+pyqt写了一个客户端
原理:
迅雷: 迅雷下载地址="thunder://"+Base64编码("AA"+"真实地址"+"ZZ")
QQ旋风: qqdl="qqdl://"+Base64编码("真实地址")
import re
import base64
from...
分类:
编程语言 时间:
2014-04-27 18:52:06
阅读次数:
772