出现以下错误: Could not open key:
UNKNOWN\Components\7ABFE44842C12B390AF18C3B9B1A1EE8\000021599B0090400100000000F01FEC.Verify
that you have sufficient acces...
分类:
数据库 时间:
2014-05-09 13:33:37
阅读次数:
1131
重写Ext.override(Ext.grid.RowEditor, {
addFieldsForColumn : function(column, initial) { var me = this, i, length,
field; if (Ext.isArray(col...
分类:
Web程序 时间:
2014-05-09 10:31:24
阅读次数:
411
戳我去解题Given amxnmatrix, if an element is 0, set its
entire row and column to 0. Do it in
place.这题还是很简单的,就是有点坑,遍历矩阵的时候,每遇到0的时候,我们不能立即将所在行和列置0,否则,到最后矩阵所有...
分类:
其他好文 时间:
2014-05-09 08:51:57
阅读次数:
253
官网 http://www.rust-lang.org/下载链接
http://static.rust-lang.org/dist/rust-0.10-i686-unknown-linux-gnu.tar.gzrust有mac,windows,mac版本
,试了windows和linux版本,win...
分类:
其他好文 时间:
2014-05-09 06:00:52
阅读次数:
299
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
Incorrectstringvalue:‘\xE6\x98\xAF\xE6\xBB\xB4...‘forcolumn‘name‘atr修改数据库的编码ALTERDATABASEtestCHARACTERSETutf8ALTERTABLEhobbyCONVERTTOCHARACTERSETutf8ALTERTABLEpersonCONVERTTOCHARACTERSETutf8
分类:
编程语言 时间:
2014-05-08 17:02:32
阅读次数:
317
Django站点使用django_cas接入SSO(单点登录系统),配置完成后登录,抛出“urlopen error unknown url type: https”异常。寻根朔源发现是python内置的urllib模块不支持https协议。
>>> import urllib
>>> urllib.urlopen('http://www.baidu.com')
>
>>> url...
分类:
编程语言 时间:
2014-05-07 03:43:55
阅读次数:
424
Sys.Application.add_load(function() {
var form = Sys.WebForms.PageRequestManager.getInstance()._form;
form._initialAction = form.action = window.location.href;
});
if (!documen...
分类:
Web程序 时间:
2014-05-06 23:36:38
阅读次数:
408
You are given an N × N grid initially filled by zeros. Let the rows and columns of the grid be numbered from1 to N, inclusive. There are two types of operations can be applied to the grid:
RowAdd R...
分类:
其他好文 时间:
2014-05-06 22:35:44
阅读次数:
451
Suppose a sorted array is rotated at some pivot unknown to you beforehand.
(i.e., 0 1 2 4 5 6 7 might become 4
5 6 7 0 1 2).
You are given a target value to search. If found in the array retur...
分类:
其他好文 时间:
2014-05-06 19:03:11
阅读次数:
365