Storing Book Information in SQLite Database in C#

This exercise focuses on creating a program that asks the user for data about books, such as the title, author, genre, and summary, and stores this data in a SQLite database. The program will use SQLite for persistent storage, allowing the user to input information and save it in a structured format. This demonstrates how to interact with a database to store and manage book-related data.



Group

Working with Relational Databases in C#

Objective

1. Create a Book class with properties for title, author, genre, and summary.
2. Prompt the user for the required book information (title, author, genre, and summary).
3. Store the book data in a SQLite database by creating a table for books.
4. Implement a method to insert book data into the database and another method to retrieve and display the stored books.

Create a program to ask the user for data about books (title, author, genre, and summary) and store them in a SQLite database.

Example C# Exercise

 Copy C# Code
using System;
using System.Data.SQLite; // SQLite library for database operations

class Book
{
    // Properties of the Book class
    public string Title { get; set; }
    public string Author { get; set; }
    public string Genre { get; set; }
    public string Summary { get; set; }

    // Constructor for the Book class
    public Book(string title, string author, string genre, string summary)
    {
        Title = title;
        Author = author;
        Genre = genre;
        Summary = summary;
    }
}

class BookDatabase
{
    // SQLite connection string
    private string connectionString = "Data Source=bookDatabase.db;Version=3;";

    // Method to create the database and the Books table
    public void CreateDatabase()
    {
        using (SQLiteConnection conn = new SQLiteConnection(connectionString))
        {
            conn.Open();
            string createTableQuery = "CREATE TABLE IF NOT EXISTS Books (Title TEXT, Author TEXT, Genre TEXT, Summary TEXT)";
            SQLiteCommand cmd = new SQLiteCommand(createTableQuery, conn);
            cmd.ExecuteNonQuery();
        }
    }

    // Method to insert a new book into the database
    public void InsertBook(Book book)
    {
        using (SQLiteConnection conn = new SQLiteConnection(connectionString))
        {
            conn.Open();
            string insertQuery = "INSERT INTO Books (Title, Author, Genre, Summary) VALUES (@Title, @Author, @Genre, @Summary)";
            SQLiteCommand cmd = new SQLiteCommand(insertQuery, conn);
            cmd.Parameters.AddWithValue("@Title", book.Title);
            cmd.Parameters.AddWithValue("@Author", book.Author);
            cmd.Parameters.AddWithValue("@Genre", book.Genre);
            cmd.Parameters.AddWithValue("@Summary", book.Summary);
            cmd.ExecuteNonQuery();
        }
    }

    // Method to display all books from the database
    public void DisplayBooks()
    {
        using (SQLiteConnection conn = new SQLiteConnection(connectionString))
        {
            conn.Open();
            string selectQuery = "SELECT * FROM Books";
            SQLiteCommand cmd = new SQLiteCommand(selectQuery, conn);
            SQLiteDataReader reader = cmd.ExecuteReader();

            while (reader.Read())
            {
                Console.WriteLine($"Title: {reader["Title"]}, Author: {reader["Author"]}, Genre: {reader["Genre"]}, Summary: {reader["Summary"]}");
            }
        }
    }
}

class Program
{
    static void Main()
    {
        // Create a BookDatabase object
        BookDatabase database = new BookDatabase();

        // Create the database and the Books table if they don't exist
        database.CreateDatabase();

        // Prompt the user for book data
        Console.WriteLine("Enter book details:");
        Console.Write("Title: ");
        string title = Console.ReadLine();
        Console.Write("Author: ");
        string author = Console.ReadLine();
        Console.Write("Genre: ");
        string genre = Console.ReadLine();
        Console.Write("Summary: ");
        string summary = Console.ReadLine();

        // Create a Book object with the entered data
        Book newBook = new Book(title, author, genre, summary);

        // Insert the book data into the database
        database.InsertBook(newBook);

        // Display all books from the database
        Console.WriteLine("\nBooks in the database:");
        database.DisplayBooks();
    }
}

 Output

Enter book details:
Title: The Great Gatsby
Author: F. Scott Fitzgerald
Genre: Fiction
Summary: A novel about the American Dream in the 1920s.

Books in the database:
Title: The Great Gatsby, Author: F. Scott Fitzgerald, Genre: Fiction, Summary: A novel about the American Dream in the 1920s.

Share this C# Exercise

More C# Practice Exercises of Working with Relational Databases in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Display Book Data from Previous Program in C#

    This program will display the data about books that were stored by the previous program. It will retrieve and show each book's details, including the title, author, and year of pub...

  • Book Information Management Program in C#

    This program allows the user to enter information about books, such as title, author, and year of publication. The user can also browse the existing data to view the list of entere...