Skip to content
Snippets Groups Projects
Commit a7d19d5c authored by Brandon Rodriguez's avatar Brandon Rodriguez
Browse files

Update documentation

parent 9e73a76c
Branches
No related merge requests found
# MySQL Connector Example - Documents > References
## Description
Various references used in project.
## References
### JavaScript (NodeJs) References
#### Async and Await
<https://www.freecodecamp.org/news/async-await-javascript-tutorial/>
#### View JavaScript Object Methods
Acts similarly to Python's "dir" method:<br>
<https://stackoverflow.com/a/2258232>
#### View JavaScript Object Data
For instances when output is the unhelpful `[object Object]`.<br>
<https://stackoverflow.com/a/41336822>
#### Calling JavaScript's Equivalent of "Sleep"
<https://stackoverflow.com/a/39914235>
#### Generating a Random Number
<https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random>
#### Checking for Type Int
<https://stackoverflow.com/a/19048736>
<https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseInt>
### MySQL2 Library References
#### JavaScript "MySQL" vs "MySQL2"
<https://stackoverflow.com/a/44001076>
### MySQL Library Docs
<https://www.npmjs.com/package/mysql2>
#### Async and Await with MySQL
<https://codeburst.io/node-js-mysql-and-async-await-6fb25b01b628>
#### MySQL2 General Syntax
<https://evertpot.com/executing-a-mysql-query-in-nodejs/>
...@@ -15,3 +15,7 @@ MySql instance. ...@@ -15,3 +15,7 @@ MySql instance.
## Running the Program ## Running the Program
Once the program is setup, use a terminal to cd into project root, then run `node app.js`. Once the program is setup, use a terminal to cd into project root, then run `node app.js`.
## References
See `documents/references.md` for various references used for project.
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment