1. Create a City class with properties such as Name, Country, and Population.
2. Implement methods to connect to a database and insert, retrieve, and display city data.
3. Use a simple SQLite database or any relational database to store the city information.
4. Implement functionality to persist the city data in the database, and ensure it can be retrieved when the program is run again.
Create a new version of the "cities database", using persistence to store its data instead of text files.
using System;
using System.Data.SQLite; // SQLite library for database operations
class City
{
// Properties of the City class
public string Name { get; set; }
public string Country { get; set; }
public int Population { get; set; }
// Constructor for the City class
public City(string name, string country, int population)
{
Name = name;
Country = country;
Population = population;
}
}
class CityDatabase
{
// SQLite connection string
private string connectionString = "Data Source=cityDatabase.db;Version=3;";
// Method to create the database and the Cities table
public void CreateDatabase()
{
using (SQLiteConnection conn = new SQLiteConnection(connectionString))
{
conn.Open();
string createTableQuery = "CREATE TABLE IF NOT EXISTS Cities (Name TEXT, Country TEXT, Population INTEGER)";
SQLiteCommand cmd = new SQLiteCommand(createTableQuery, conn);
cmd.ExecuteNonQuery();
}
}
// Method to insert a new city into the database
public void InsertCity(City city)
{
using (SQLiteConnection conn = new SQLiteConnection(connectionString))
{
conn.Open();
string insertQuery = "INSERT INTO Cities (Name, Country, Population) VALUES (@Name, @Country, @Population)";
SQLiteCommand cmd = new SQLiteCommand(insertQuery, conn);
cmd.Parameters.AddWithValue("@Name", city.Name);
cmd.Parameters.AddWithValue("@Country", city.Country);
cmd.Parameters.AddWithValue("@Population", city.Population);
cmd.ExecuteNonQuery();
}
}
// Method to retrieve all cities from the database
public void DisplayCities()
{
using (SQLiteConnection conn = new SQLiteConnection(connectionString))
{
conn.Open();
string selectQuery = "SELECT * FROM Cities";
SQLiteCommand cmd = new SQLiteCommand(selectQuery, conn);
SQLiteDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
Console.WriteLine($"Name: {reader["Name"]}, Country: {reader["Country"]}, Population: {reader["Population"]}");
}
}
}
}
class Program
{
static void Main()
{
CityDatabase database = new CityDatabase();
// Create the database and the Cities table if they don't exist
database.CreateDatabase();
// Inserting some city data into the database
City city1 = new City("Madrid", "Spain", 3200000);
City city2 = new City("Berlin", "Germany", 3700000);
City city3 = new City("Tokyo", "Japan", 14000000);
database.InsertCity(city1);
database.InsertCity(city2);
database.InsertCity(city3);
// Displaying all cities from the database
Console.WriteLine("Cities in the database:");
database.DisplayCities();
}
}
Output
Cities in the database:
Name: Madrid, Country: Spain, Population: 3200000
Name: Berlin, Country: Germany, Population: 3700000
Name: Tokyo, Country: Japan, Population: 14000000