当前位置: 软件>C/C++软件
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 { ...
这是 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] )
}