Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 901257
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T15:31:42+00:00 2026-05-15T15:31:42+00:00

I’m trying to use sqlite in a ‘data services’ class like below. I keep

  • 0

I’m trying to use sqlite in a ‘data services’ class like below. I keep getting an error code 1 when calling ‘sqlite3_prepare_v2’. The logs certainly back up that the database is getting opened before my recipeNames function is called. I’m so stumped! Is it a memory management thing with the sqlite3 *db ? Eg is it getting freed when i don’t want it to?

I’m certain the code is OK otherwise, because if i put the sqlite_open in the recipeNames function, it works great. It’s just if i try to open it in the init method it fails. Thanks a lot guys.

My header:

#import <Foundation/Foundation.h>
#include <sqlite3.h>


@interface DataServices : NSObject {
    sqlite3 *db;
    int dbrc;
}

- (NSMutableArray *) recipeNames;

@end

Implementation file:

#import "DataServices.h"
#import "MenuMakerAppDelegate.h"
#include <sqlite3.h>

@implementation DataServices

- (id)init {
    [super init];

    // my init stuff here

    // Get the database name
    const char *dbPathUtf8 = [((MenuMakerAppDelegate*)[UIApplication sharedApplication].delegate).dbFilePath UTF8String];
    // Open the database
    NSLog(@"opening db");
    sqlite3_open (dbPathUtf8, &db);
    NSLog(@"opened db");

    return self;
}

- (void)dealloc {
    // My dealloc stuff here
    NSLog(@"Closing DB");
    sqlite3_close(db);
    [super dealloc];
}

- (NSMutableArray *) recipeNames {
    // Create the empty array to return
    NSMutableArray *arr = [[[NSMutableArray alloc] init] autorelease];
    // The SQL
    NSString *sql = @"select recipe from recipes";
    const char *sqlUtf8 = [sql UTF8String];
    // Make the prepared statement (like C# SqlCommand)
    sqlite3_stmt *dbps;
    dbrc=sqlite3_prepare_v2(db, sqlUtf8, -1, &dbps, NULL); // FAILS HERE !!!
    if (dbrc) NSLog(@"Prepare!!! %d", dbrc);
    // Loop thru rows
    while (sqlite3_step(dbps) == SQLITE_ROW) {
        NSString *recipe = [NSString stringWithUTF8String:(char*)sqlite3_column_text(dbps,0)];
        [arr addObject:recipe];
    }
    // Get rid of the command
    sqlite3_finalize(dbps);
    // Return the array that was autoreleased before
    return arr;
}

@end
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T15:31:43+00:00Added an answer on May 15, 2026 at 3:31 pm

    On a hunch:

    NSLog(@"opening db %s", dbPathUtf8);
    int result = sqlite3_open(dbPathUtf8, &db);
    NSLog(@"sqlite3_open returned %d", result);
    

    I’m betting that dbPathUtf8 is null and that sqlite3_open is returning an error. 1 is SQLITE_ERROR (SQL error or missing database), which probably means db is NULL.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 459k
  • Answers 459k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Have you added a using statement for System.Linq and included… May 15, 2026 at 11:26 pm
  • Editorial Team
    Editorial Team added an answer Wrap the tables in a div, float them, and clear… May 15, 2026 at 11:26 pm
  • Editorial Team
    Editorial Team added an answer The sc:text control has a public property called Item that… May 15, 2026 at 11:26 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.