- Create a user with a password manually.
- Create a database manually.
- Create a table manually for describing fleet of cars: id, license-plate, year-built, brand, owner. (Owner is the name of the owner)
- Create a program that accepts values on the command line and insterts the data in the database
- Create another program that lists all the cars.
- Improve the selector program to accept command line paramter --minage N and --maxage N and show the cars within those age limits (N is a number of years e.g. 3)
- Create program to delete a car.
- Create program to change the owner of a car.