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] )
}