/csv-db

Only for common lisp learning, this shall be a db implement based on csv file format.

Primary LanguageCommon Lisp

csv-db

This project is only for my common lisp leaning exercise.

CSV-DB is a simple database implement based on csv file format. Theoretically, the time complexity of all operation will be O(n), due to lacking of index acceleration.

Change Note

  • 2022-07-24. Impl: create, drop, insert, select functions;