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 781835
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T20:17:36+00:00 2026-05-14T20:17:36+00:00

another iPhone newbie question… I have the following: NSPersistentStoreCoordinator NSManagedObjectContext NSManagedObjectModel Is it possible

  • 0

another iPhone newbie question…

I have the following:

NSPersistentStoreCoordinator
NSManagedObjectContext
NSManagedObjectModel

Is it possible to run queries directly on the store (since its a sqlite DB)? I’m trying to delete all the records from a tableview, and figured a “DELETE FROM table” would be nice and quick as opposed to looping through the records and removing them manually (which i’m also struggling with).

Thanks for your time,

James

  • 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-14T20:17:36+00:00Added an answer on May 14, 2026 at 8:17 pm

    Core data acts as a wrapper for the underlying data store, so it’s not really a great idea to begin circumventing core data. Additionally, core data adds additional information to your DB, so directly accessing the DB may (or may in the future) cause problems.

    To delete all records via core data, I have the following:

    + (void) deleteAll {
      NSManagedObjectContext *managedObjectContext = [(myAppDelegate*)[[UIApplication sharedApplication] delegate] managedObjectContext];
      NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
      NSEntityDescription *entity = [NSEntityDescription entityForName:[[self class] description] inManagedObjectContext:managedObjectContext];
      [fetchRequest setEntity:entity];
    
      NSError *error;
      NSArray *items = [managedObjectContext executeFetchRequest:fetchRequest error:&error];
      [fetchRequest release];
    
    
      for (NSManagedObject *managedObject in items) {
        [managedObjectContext deleteObject:managedObject];
        NSLog(@"%@ object deleted",[[self class] description]);
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

another probably simple iPhone obj-c question for you... I have a couple of alerts
I have another quartz 2d (iphone) question: How to change all the colors of
I have moved my iPhone app from one machine to another. In the process
another newbie-question regarding rails and bootstrap. I am using something like this: <div class=tabbable
Another git question... I am in the following situation: A1 ---- B1 ---- C1
I'm a newbie doing Objective-C, coming from Flex/Actionscript development. I have an iPhone app
another weird problem with the iPhone SDK here. I have a UITableView which contains
Another memory question on iPhone - When running the leaks application I see a
I have an iPhone project that I started as a Windows-based app and another
Sorry another newbie question that I couldn't seem to find an answer to on

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.