Datensätze speichern und lesen
Richten Sie Abläufe zum Erstellen und Lesen ein.
Datensätze speichern und lesen ist eine kostenlose Vibe Coding-Lektion auf CoddyKit. Dies ist Lektion 4 von 4. Du kannst die komplette Lektion unten kostenlos lesen – dann übst du sie direkt im Browser mit einem integrierten Code-Editor und einem KI-Tutor rund um die Uhr. Sie ist Teil des Vibe Coding-Lernpfads, und dein Fortschritt wird über Web und CoddyKit-App synchronisiert. Der Vibe Coding-Kurs umfasst insgesamt 4 Lektionen.
Teile dieser Lektion wurden noch nicht übersetzt und werden auf Englisch angezeigt.
The Four Core Actions
Almost everything an app does with data is one of four actions: Create, Read, Update, and Delete. Together they're called CRUD.
Once your tables exist, you'll ask the AI to write code for each of these, often one feature at a time.
Saving a New Record
To store something new, you insert a row into a table. The app collects the values, then writes them into the database.
Describe the data and the table, and let the AI generate the save function with the right fields filled in.
Write a function that saves a new task to the "tasks" table.
It should take a title and a due date, and return the newly created task's id.Reading Records Back
Reading means fetching rows out of the database. You might want all of them, or just the ones that match a condition.
Be clear about what you want back and in what order, so the AI writes a query that returns exactly the right rows.
Write a query that reads all tasks for a given user id,
sorted by due date with the soonest first.Filtering With Conditions
Often you don't want every row, just the matching ones. Filtering uses conditions like "where status is open" or "where created after Monday."
State the filter plainly and the AI turns it into the proper query, whether that's SQL or an ORM call.
Read only the tasks that are not completed and are due within the next 7 days.
Return the title and due date for each.Updating a Record
To change existing data, you update a row by finding it (usually by id) and setting new values.
Always tell the AI how to identify the right row, so the update touches only that record and not the whole table.
Write a function that marks a task as completed.
It takes a task id and sets the completed flag to true for only that row.Deleting Carefully
Deleting removes a row for good. It's powerful and easy to get wrong, so be precise about which row.
Many apps prefer a "soft delete," flipping an is_deleted flag instead of truly removing the data. Ask the AI which fits your case.
I want to delete a task by id, but keep it recoverable.
Implement a soft delete using an is_deleted flag instead of removing the row.Never Trust Raw Input
Data from users can be messy or even malicious. Inserting it directly into a query can cause errors or security holes like SQL injection.
Modern tools handle this with parameterized queries. Remind the AI to use safe, parameterized inserts rather than gluing strings together.
When you write database code for this app,
always use parameterized queries so user input can't cause SQL injection.Handling the Empty Case
What happens when a read finds nothing? A search with no matches should show "no results," not crash.
Ask the AI to handle the empty case so your app behaves gracefully when the database returns zero rows.
Update the task-reading function so that when no tasks match,
it returns an empty list and the UI shows a friendly "nothing here yet" message.Reads Should Be Fast
As tables grow, reads can slow down. An index is like a book's index: it helps the database find rows quickly.
If a frequent query feels slow, ask the AI whether adding an index on the filtered column would help.
My query that filters tasks by user_id is getting slow.
Would an index on user_id help, and if so, generate the migration to add it.Testing Your CRUD
Before trusting your data layer, test it. Save a record, read it back, update it, then delete it, and confirm each step worked.
You can ask the AI to write these tests so future changes don't quietly break saving or reading.
Write tests that create a task, read it back, update its title, then delete it,
checking the database state is correct after each step.Tying It Together
With CRUD in place, your app finally remembers. Users create data, see it again, change it, and remove it, all backed by your database.
From here, every new feature is just another combination of saving and reading records.
Quick Check
Test your understanding of saving and reading records.
Recap
CRUD covers Create, Read, Update, and Delete: the four core data actions. You learned to save rows, read and filter them, update by id, and delete carefully, often with a soft delete.
Always use parameterized queries, handle empty results, index slow reads, and test your data layer. You can now add a working database to your AI app.
Lerne JavaScript mit einem KI-Tutor — kostenlos
Schreibe und führe echten Code in deinem Browser aus, bekomme sofortige Hilfe von einem 24/7 KI-Tutor und setze dein Lernen im Web oder in der App fort.
- Kurse
- 25
- Lektionen
- 100
Häufig gestellte Fragen
Ist die Lektion „Datensätze speichern und lesen“ kostenlos?
Ja — der vollständige Text von „Datensätze speichern und lesen“ ist hier im Web kostenlos zu lesen. Um sie interaktiv zu üben (integrierter Code-Editor und 24/7 KI-Tutor) und den Rest des Vibe Coding-Kurses freizuschalten, upgrade auf CoddyKit PRO. Der Vibe Coding-Kurs umfasst insgesamt 4 Lektionen.
Was lerne ich in „Datensätze speichern und lesen“?
Richten Sie Abläufe zum Erstellen und Lesen ein. Du übst Vibe Coding mit praktischem Code, den du direkt im Browser ausführst, und ein 24/7 KI-Tutor beantwortet deine Fragen während du die Lektion bearbeitest.
Brauche ich Erfahrung, um Vibe Coding zu starten?
Keine Vorkenntnisse erforderlich. Vibe Coding auf CoddyKit ist für Anfänger bis fortgeschrittene Lernende strukturiert, sodass du hier starten oder von Anfang an beginnen und in deinem eigenen Tempo voranschreiten kannst. Dies ist Lektion 4 von 4.
Wie lange dauert die Lektion „Datensätze speichern und lesen“?
Die meisten CoddyKit-Lektionen dauern etwa 5–10 Minuten. Jede ist kompakt und interaktiv, sodass du stetig Fortschritte machst und genau dort weitermachst, wo du aufgehört hast – im Web und in der App.
Kann ich in dieser Vibe Coding-Lektion Code schreiben und ausführen?
Ja. Jede Vibe Coding-Lektion enthält einen integrierten Code-Editor, sodass du echten Code direkt in deinem Browser schreibst und ausführst und sofort KI-Feedback erhältst — ohne lokale Einrichtung erforderlich.
Alle Lektionen in diesem Kurs
- Warum Apps Daten benötigen
- Eine Datenbank per Prompt auswählen
- Tabellen mit KI modellieren
- Datensätze speichern und lesen