我的iOS应用程序上有一个sqlite数据库。 我发现我对列的数字有误,然后我改为正确的那个,从那以后我得到一个错误'PRIMARY KEY必须是唯一的'。 在错误之前一切顺利(除了错误的值之外的2列)。
我的代码:
- (BOOL)createGroupMemberTable {
char *error = NULL;
const char *sqlStatment = [NSString stringWithFormat:@"CREATE TABLE IF NOT EXISTS '%@' (ID INTEGER PRIMARY KEY AUTOINCREMENT, %@ INTEGER, %@ INTEGER, '%@' TEXT, '%@' TEXT, '%@' TEXT, '%@' TEXT, '%@' TEXT, '%@' TEXT, '%@' TEXT, '%@' TEXT);", kTableNameGroupMember, kMemberID, kGroupID, kName, kTime, kLatitude, kLongitude, kMobile, kVisible, kAddress, kPicture].UTF8String;
int responseCode = sqlite3_exec(_database, sqlStatment, NULL, NULL, &error);
if (responseCode != SQLITE_OK) {
sqlite3_close(_database);
printf("Table 'GroupMember' failed to create, responseCode: %i\n", responseCode);
return NO;
}
else {
return YES;
}
}
- (BOOL)addGroupMember:(GroupMember*)aGroupMember {
char *error = NULL;
const char *sqlStatment = [NSString stringWithFormat:@"INSERT INTO %@ ('%@', '%@', '%@', '%@', '%@', '%@', '%@', '%@', '%@', '%@') VALUES (%i, %i, '%@', '%@', '%@', '%@', '%@', '%@', '%@', '%@');", kTableNameGroupMember, kMemberID, kGroupID, kName, kTime, kLatitude, kLongitude, kMobile, kVisible, kAddress, kPicture, aGroupMember.memberID, aGroupMember.groupID, aGroupMember.name, aGroupMember.time, aGroupMember.latitude, aGroupMember.longitude, aGroupMember.mobile, aGroupMember.visible, aGroupMember.address, aGroupMember.picture].UTF8String;
int responseCode = sqlite3_exec(_database, sqlStatment, NULL, NULL, &error);
if (responseCode != SQLITE_OK) {
printf("\n\nFailed to insert into 'GroupMember' table, responseCode: %i\n", responseCode);
printf("Error Message: %s\n\n", sqlite3_errmsg(_database));
return NO;
}
else {
return YES;
}
}
这可能无关紧要,但这是我创建数据库的代码:
static SQLiteHandler *_database;
+ (SQLiteHandler*)database {
if (_database == nil) {
_database = [[SQLiteHandler alloc] init];
}
return _database;
}
- (NSString*)databasePath {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *docDirectory = [paths objectAtIndex:0];
return [docDirectory stringByAppendingPathComponent:@"social.sqlite3"];
}
- (id)init {
if ((self = [super init])) {
const char *fileName = [self databasePath].UTF8String;
if ([[NSFileManager defaultManager] fileExistsAtPath:[NSString stringWithFormat:@"%s", fileName]]) {
printf("SQLITE EXISTS\n");
}
else {
printf("SQLITE NOT EXISTS\n");
const char *finalPath = [self databasePath].UTF8String;
printf("File 'social.sqlite3' created at path: %s\n", finalPath);
}
printf("fileName: %s\n", fileName);
int responseCode = sqlite3_open(fileName, &_database);
if (responseCode != SQLITE_OK) {
printf("Failed to open database, responseCode: %i\n", responseCode);
}
[self createGroupTable];
[self createGroupMemberTable];
}
return self;
}
错误日志:
无法插入“GroupMember”表,responseCode:19错误 消息:PRIMARY KEY必须是唯一的
定义SQLITE_CONSTRAINT 19 / *由于约束违规导致的中止* /
有什么想法吗?
修改
答案就像我最终认为'Petesh'在这里评论一样。 所有答案都是正确的,所以我会标记第一个。
答案 0 :(得分:2)
您正在插入具有相同主键(成员ID)的组成员。您应该尝试检查数据库中是否存在此成员ID。
如果组成员已存在,您还可以决定使用INSERT OR REPLACE INTO替换所有值:
[NSString stringWithFormat:@"INSERT OR REPLACE INTO %@ ('%@', '%@', '%@', '%@', '%@', '%@', '%@', '%@', '%@', '%@') VALUES (%i, %i, '%@', '%@', '%@', '%@', '%@', '%@', '%@', '%@');", kTableNameGroupMember, kMemberID, kGroupID, kName, kTime, kLatitude, kLongitude, kMobile, kVisible, kAddress, kPicture, aGroupMember.memberID, aGroupMember.groupID, aGroupMember.name, aGroupMember.time, aGroupMember.latitude, aGroupMember.longitude, aGroupMember.mobile, aGroupMember.visible, aGroupMember.address, aGroupMember.picture].UTF8String;
答案 1 :(得分:1)
您正在尝试使用数据库中已存在的主键插入/更新记录。再看一下您尝试更改的记录的主键,并查看数据库中是否有相同主键的记录(特定记录的唯一标识符)。
答案 2 :(得分:1)
主键是数据库标识每一行的方式,因此您无法插入具有与已使用的主键相同的主键的记录。
看起来发生的事情是,当您在错误之后重新启动时,您没有先删除应用程序,因此它使用了已创建的数据库,而不是从头开始重新启动。然后当你调用addGroupMember时,它会重用kTableNameGroupMember的值,我认为这是你的主键。