1

iOS 6 iPhone アプリケーションの SQLite データベースに文字列を保存しようとしています。ボタンをクリックするとテキストビューにジョークが表示されます。2 番目のボタンをクリックしたときに、そのテキストビューを SQLite データベース (saveJoke) に保存したいと考えています。ただし、SQLITE_DONE が返されることはありません。これは、これが機能していないことを示しています。そのため、私のアラートを見ると、以下の saveJoke が実行されると常に「Fail」が表示されます。

なぜこれが機能しないのですか?SQLite データベースの作成と挿入において、何か基本的なことが欠けているのではないかと感じています。助けてくれて本当にありがとう!

私のコード:

JokeFirstViewController.m:

#import "JokeFirstViewController.h"

@interface JokeFirstViewController ()

@end

@implementation JokeFirstViewController

@synthesize joke = _joke;

- (void)viewDidLoad
    {
    [super viewDidLoad];

    NSString *docsDir;
    NSArray *dirPaths;

    dirPaths = NSSearchPathForDirectoriesInDomains(
                                               NSDocumentDirectory, NSUserDomainMask, YES);

    docsDir = dirPaths[0];

    // Build the path to the database file
    _databasePath = [[NSString alloc]
                 initWithString: [docsDir stringByAppendingPathComponent:
                                  @"contacts.db"]];

    NSFileManager *filemgr = [NSFileManager defaultManager];

    if ([filemgr fileExistsAtPath: _databasePath ] == NO)
    {
    const char *dbpath = [_databasePath UTF8String];

    if (sqlite3_open(dbpath, &_contactDB) == SQLITE_OK)
    {
        char *errMsg;
        const char *sql_stmt =
        "CREATE TABLE IF NOT EXISTS CONTACTS (ID INTEGER PRIMARY KEY AUTOINCREMENT, JOKESAVED TEXT)"; //look into

        sqlite3_close(_contactDB);

    }
  }
}

- (IBAction)saveJoke:(id)sender {

    /* get current joke displayed */
    self.joke = self.text.text;
    NSString *currentJoke = self.joke;
    NSString *jokeSaved = [[NSString alloc] initWithFormat:currentJoke];

    sqlite3_stmt    *statement;
    const char *dbpath = [_databasePath UTF8String];

    if (sqlite3_open(dbpath, &_contactDB) == SQLITE_OK)
    {

        NSString *insertSQL = [NSString stringWithFormat:
                               @"INSERT INTO CONTACTS (jokesaved) VALUES (?)",
                               jokeSaved];

        const char *insert_stmt = [insertSQL UTF8String];
        sqlite3_prepare_v2(_contactDB, insert_stmt,
                           -1, &statement, NULL);
        if (sqlite3_step(statement) == SQLITE_DONE)
        {
            void AlertWithMessage(NSString *message);
            {
                UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Database" message:@"Success" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
                [alert show];
            }
        } else {
            void AlertWithMessage(NSString *message);
            {
                UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Database" message:@"Fail" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
                [alert show];
            }

        }
        sqlite3_finalize(statement);
        sqlite3_close(_contactDB);
    }

    }

}

JokeFirstViewController.h:

#import <UIKit/UIKit.h>
#import <MessageUI/MFMessageComposeViewController.h>
#import <sqlite3.h>

@interface JokeFirstViewController : UIViewController <MFMessageComposeViewControllerDelegate>


- (IBAction)saveJoke:(id)sender;

- (IBAction)shareJoke:(id)sender;

- (IBAction)generateJoke:(id)sender;

@property (strong, nonatomic) IBOutlet UITextView *text;

@property (copy, nonatomic) NSString *joke;

@property (strong, nonatomic) NSString *databasePath;

@property (nonatomic) sqlite3 *contactDB;

@end
4

2 に答える 2

1

INSERT クエリも確認する必要があります。stringFormat が間違っています。

変化する:

NSString *insertSQL = [NSString stringWithFormat:
                               @"INSERT INTO CONTACTS (jokesaved) VALUES (?)", jokeSaved];

に:

NSString *insertSQL = [NSString stringWithFormat:
                               @"INSERT INTO CONTACTS (jokesaved) VALUES ('%@')", jokeSaved];
于 2013-05-22T11:19:22.443 に答える