今天下载alipay无线应用sdk,首选感觉:我靠,藏的真深!下载后commad+R发现报错了。具体错误信息如图:解决办法是将library search paths 里面的东西去掉所有的\\\ 坑爹啊!如图:
分类:
移动开发 时间:
2014-07-22 22:54:57
阅读次数:
242
罗列出项目使用到的注解,而自己不清楚属性意思的,或者是不算特别清楚的注解 @Column —— 注解声明了属性到列的映射。该注解有如下的属性 ? name? 可选,列名(默认值是属性名) ? unique 可选,是否在该列上...
分类:
系统相关 时间:
2014-07-22 09:13:36
阅读次数:
305
![这些选项有什么用?][1] **PK** Belongs to primary key 作为主键 **NN** Not Null 非空 **UQ** Unique index 不能重复 **BIN** Is binary column 存放二进制数据的列 **UN** Unsigned data type 无符号数据类型...
分类:
数据库 时间:
2014-07-21 10:38:22
阅读次数:
244
最近在学习用Python开发web,使用的是web框架,在win8.1平台下安装SAE和Flask的时候总是在ntpath.py这个UnicodeDecodeError模块报错。84行 result_path = result_path+ p_path 显示的错误就是UnicodeDecode...
分类:
其他好文 时间:
2014-07-21 08:20:06
阅读次数:
212
The Unique MSTTime Limit:1000MSMemory Limit:10000KTotal Submissions:19847Accepted:6959DescriptionGiven a connected undirected graph, tell if its minim...
分类:
其他好文 时间:
2014-07-21 00:23:08
阅读次数:
303
本文原题: LeetCode.给定 n, 求解独特二叉搜寻树 (binary search trees) 的个数.什么是二叉搜寻树?二叉查找树(Binary Search Tree),或者是一棵空树,或者是具有下列性质的二叉树: 若它的左子树不空,则左子树上所有结点的值均小于它的根结点的值; 若它的...
分类:
其他好文 时间:
2014-07-19 21:34:00
阅读次数:
292
It is said that the people of Menggol lived in caves. A tribe's caves were connected to each other with paths. The paths were so designed that there w...
分类:
其他好文 时间:
2014-07-19 19:03:48
阅读次数:
344
Another recursion-style problem.1. Each count of sub-solution with a certain root should contribute to final count2. With a certain root, the num of l...
分类:
其他好文 时间:
2014-07-18 18:18:01
阅读次数:
187
SQL Server中有五种约束类型,分别是 PRIMARY KEY约束、FOREIGN KEY约束、UNIQUE约束、DEFAULT约束、和CHECK约束。查看或者创建约束都要使用到 Microsoft SQL Server Managment Studio。
1. PRIMARY KEY约束
在表中常有一列或多列的组合,其值能唯一标识表中的每一行。这样的一列或多列成为表的主键(Primar...
分类:
数据库 时间:
2014-07-18 17:03:18
阅读次数:
359
FMDatabase 的使用方法- (NSString*) getPath { NSArray* paths =NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES) ; return[[pathso...
分类:
移动开发 时间:
2014-07-18 10:08:04
阅读次数:
342