What does the terminology "Database seeding" mean?

What is database seeding in the context of Core Data?

0

2 Answers

In the context of core data seeding just means shipping your app with a persistent store pre-populated with default data. In the recipes example Apple has, the seeded data is the recipe data that they have in the sqlite database that's a part of the project.

Database seeding is the initial seeding of a database with data.

This is often an automated process that is executed upon the initial setup of an application.

The data can be dummy data or necessary data such as an initial administrator account.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like