MySQL for Objective-C
这是 Objective-C 编程语言用来连接 MySQL 数据库的驱动程序。
示例代码:
/*
* A simple init method, note the formatting and whitespace
*/
- (id)initWithHost:(NSString *)h port:(NSInteger)p user:(NSString *)u password:(NSString *)pwd options:(NSInteger)properties {
if( self = [super init] ) {
// etc ...
} // END if( self = [super init] )
}
评论