I am trying to Sign up a user in my application.
I have a view controller with 3 textfields (username, password and confirmpassword)
and a submit
button.
The following method is called when submit button is pressed:
-(IBAction)addUser
{
NSString *tempUser,*tempPass, *tempConfPass;
tempUser = [[NSString alloc]init];
tempPass = [[NSString alloc]init];
tempConfPass = [[NSString alloc]init];
tempUser = [NSString stringWithFormat:@"%@",_mUserName.text];
tempPass = [NSString stringWithFormat:@"%@",_mPassword.text];
tempConfPass = [NSString stringWithFormat:@"%@",_mConfPassword.text];
signupUser = [[UseDb alloc]init];
flagUser = [signupUser addNewUser:_mUserName.text:_mPassword.text:_mConfPassword.text];
if(flagUser)
{
myAlertViewUser = [[UIAlertView alloc] initWithTitle:@"Error" message:@"User Added"
delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];
[myAlertViewUser show];
}
else {
_mStatus.text = @"failed to add user";
myAlertViewUser = [[UIAlertView alloc] initWithTitle:@"Error" message:@"passwords don't match"
delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];
[myAlertViewUser show];
}
}
and this method is called by addUser
method:
-(BOOL)addNewUser:(NSString *)newUser :(NSString *)newPassword :(NSString *)confirmPass
{
NSLog(@"%@....%@...%@",newUser, newPassword, confirmPass);
sqlite3_stmt *statement;
const char *dbpath = [_mDatabasePathDb UTF8String];
if (sqlite3_open(dbpath, &_mDb) == SQLITE_OK && [newPassword isEqualToString:confirmPass] && ![newUser isEqualToString:@""] && ![newPassword isEqualToString:@""])
{
self.userName = [NSString stringWithFormat:@"%@",newUser];
self.password = [NSString stringWithFormat:@"%@",newPassword];
NSString *insertSQL = [NSString stringWithFormat:
@"INSERT INTO USERDETAIL VALUES ("%@","%@","%@", "%@","%@", "%@","%@", "%@","%@", "%@","%@")",self.userName,self.password,@"",@"",@"",@"",@"",@"",@"",@"",@"" ];
NSLog(@"%@",insertSQL);
const char *insert_stmt = [insertSQL UTF8String];
sqlite3_prepare_v2(_mDb, insert_stmt, -1, &statement, NULL);
if (sqlite3_step(statement) == SQLITE_DONE)
{
return YES;
/* mUserName.text = @"";
mPassword.text = @"";
mConfPassword.text = @""; */
}
else {
NSLog(@"failed to add user");
}
sqlite3_finalize(statement);
sqlite3_close(_mDb);
}
}
In the addNewUser
method, if (sqlite3_step(statement) == SQLITE_DONE)
is always coming out to be false
, statement has some value before
sqlite3_prepare_v2(_mDb, insert_stmt, -1, &statement, NULL);
but turns to nil
after the above statement is executed. I don't understand why that is happening.
Please help.
See Question&Answers more detail:
os