Created
December 8, 2022 15:23
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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