Created
April 8, 2017 22:12
-
-
Save david-martin/044b69f26fdec5af4c844007e9f91df1 to your computer and use it in GitHub Desktop.
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
$ DEBUG=* node index.js | |
server New HTTP server +0ms | |
server Start the HTTP server +145ms | |
Server running at http://localhost:1337 | |
db Connecting the database +3s | |
Connected as ID 6 | |
Kurtis | |
1 | |
Aurelie | |
2 | |
HHHEEEEEEEEEEEEEEEYYYYYYYYYY | |
HHHEEEEEEEEEEEEEEEYYYYYYYYYY |
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
mysql> select * from clients; | |
+----+-----------+----------+------+ | |
| ID | firstName | lastname | Age | | |
+----+-----------+----------+------+ | |
| 1 | Kurtis | Yundt | NULL | | |
| 2 | Aurelie | Fisher | NULL | | |
+----+-----------+----------+------+ | |
2 rows in set (0.00 sec) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment