-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a page for Javascript #35
Comments
The same is true of Node. Only you'd be using an SQL module of some sort, so maybe sub sections of DBs would be needed. |
The pattern for parameterized queries in Oracle's node driver is db.execute(
'SELECT name FROM employee WHERE manager = :manager_id AND branch = :loc_id',
{manager_id: 1234, loc_id: 5678}
); |
I started an issue #83 for doing a Node page. I think that Node is different enough from client-side JS and localstorage that they should be separate. @ethanherbertson Would you be able/willing to put together a quick intro to Node? |
The Javascript page should also perhaps have a note about the data access libraries available when Javascript is hosted in Microsoft scripting hosts. |
HTML 5 has localstorage and SQL database functionality that lets you write Javascript code that will be susceptible to the same pitfalls as any other language.
The text was updated successfully, but these errors were encountered: