Skip to content

Instantly share code, notes, and snippets.

@paulodutra
Created December 8, 2022 15:23
Show Gist options
  • Save paulodutra/7197d24d19698bf7a3902b0fe28821ea to your computer and use it in GitHub Desktop.
Save paulodutra/7197d24d19698bf7a3902b0fe28821ea to your computer and use it in GitHub Desktop.
The dabase using the test laminas-api-tools. Link to repository: https://github.com/paulodutra/laminas-api-tools
First create the sqlite file: touch test.sqlite
Access the database file using the sqlite: sqlite3 test.sqlite
Listing of the tables: .tables
Creating the table of users: create table users(id int, name varchar(255), email varchar(255));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment