我正在尝试将数据插入数据库,但似乎它不会插入整数值,它正在输入字符串。该应用程序只是崩溃。
如果我按下将其保存到数据库中的按钮,文本字段为空,则这些方法会将数据插入数据库,但值为 0,因此该方法有效。
我使用的方法是:
-(BOOL) insertIntoDatabase: (NSInteger)day: (NSInteger)month:(NSInteger)year:(NSInteger)hours:(NSInteger)minutes:(NSInteger)salary:(NSString *)extra
{
FMDatabase *dbHandler = [FMDatabase databaseWithPath: [Utility getDatabasePath]];
BOOL success;
@try {
[dbHandler open];
success = [dbHandler executeUpdate:@"INSERT INTO inputs (day, month, year, hours, minutes, salary, extra) VALUES (?,?,?,?,?,?,?);",
day, month, year, hours, minutes, salary, extra];
[dbHandler close];
}
@catch (NSException *exception) {
NSLog(@"error..");
}
@finally {
return success;
}
}
这是我从 viewController 类调用的方法
-(IBAction)enterToDatabase:(id)sender{
InputClassDatabaseHandler *databaseMethods = [[InputClassDatabaseHandler alloc]init];
BOOL accept;
NSInteger day = [_day.text integerValue];
NSInteger month= [_month.text integerValue];
NSInteger year= [_year.text integerValue];
NSInteger hours= [_hours.text integerValue];
NSInteger minutes= [_minutes.text integerValue];
NSInteger salary= [_salary.text integerValue];
//hardcoded for testing...
NSString *extraWork = @"No";
accept = [databaseMethods insertIntoDatabase:day :month :year :hours :minutes :salary :extraWork ];
}