cur =
self.conn.cursor(MySQLdb.cursors.DictCursor)加上MySQLdb.cursors.DictCursor可以返回字典结构{列名:值}class
MYSQL(): def __init__(self,host,user,pwd,db): ...
分类:
数据库 时间:
2014-05-16 19:18:34
阅读次数:
419
android:fillViewport=trueScrollView下面的组件如果有android:layout_height="fill_parent"或android:layout_height="wrap_content"那么必须将ScrollView的android:fillViewpor...
分类:
移动开发 时间:
2014-05-16 18:09:45
阅读次数:
368
【问题】 (UIView *) tableView:(UITableView
*)tableView viewForHeaderInSection:(NSInteger)section
方法中的section貌似从1开始而不是从0【思路】程序中虽然设置了self.tableView.sectionH...
分类:
移动开发 时间:
2014-05-16 08:54:30
阅读次数:
521
//设置导航栏的文字self.navigationItem.title=@"功效";//设置导航栏的颜色self.navigationController.navigationBar.barTintColor=
[UIColororangeColor];//设置导航栏上字体颜色 [self.na.....
分类:
其他好文 时间:
2014-05-16 08:11:48
阅读次数:
247
代码创建:
1、appdelegate 把contoller放到跟controller下
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWi...
分类:
移动开发 时间:
2014-05-15 14:57:06
阅读次数:
456
在一个有reurn 返回值的函数里 如果申请了一段内存的话(alloc 或者copy) 这个时候不能够release 只能够使用autorelease
在返回到那个被接受到的指针里,由它去进行释放!!
如果是self.obj(或者某些类对应的 SomeClass.obj)这种类型的,就需要把self.去掉(因为这样子的申请出来的内存引用计数会被retain+1了)
...
分类:
移动开发 时间:
2014-05-15 04:40:44
阅读次数:
369
背景:如果Polyline不为简单的几何图形,则求出其自相交的点。如果FromPoint和ToPoint重合也一并返回。实现逻辑:一、创建IMulitPointpTargetPoint二、判断Polyline是否首尾相接,如果首尾相接,将点加入到pTargetPoint;三、判断Polyline是否为简单的几何图形,如果不是则进行..
分类:
其他好文 时间:
2014-05-14 15:43:53
阅读次数:
599
问题描述:RPC(Remote Procedure
Call)远程程序调用:如果要给另一个节点发信息:可以简单写成:call(Msg,Node) -> {server,Node}!{self(),Msg},
receive {ok,Res} -> Resend.ser...
分类:
Web程序 时间:
2014-05-14 13:24:12
阅读次数:
450
基本定制型C.__init__(self[, arg1, ...])
构造器(带一些可选的参数)C.__new__(self[, arg1, ...])
构造器(带一些可选的参数);通常用在设置不变数据类型的子类。C.__del__(self) 解构器C.__str__(self) 可打印的字符输出...
分类:
编程语言 时间:
2014-05-14 12:26:48
阅读次数:
435
三个属性都用来适应视图的水平或垂直大小,一个以视图的内容或尺寸为基础的布局比精确地指定视图范围更加方便。1)fill_parent设置一个构件的布局为fill_parent将强制性地使构件扩展,以填充布局单元内尽可能多的空间。这跟Windows控件的dockstyle属性大体一致。设置一个顶部布局或...
分类:
移动开发 时间:
2014-05-14 07:02:27
阅读次数:
424