Nodejs Course

- Create Database

Node.js can be used in applications with MySQL database.
If you haven't MySQL database installed on your operating system, you can download a free MySQL database at:
//dev.mysql.com/downloads/mysql/

Once you have MySQL up and running on your computer, you can access it with Node.js.
To access a MySQL database with Node.js, you need a MySQL driver. This tutorial will use the "mysql" module, from NPM.
To install the "mysql" module, open the Command Line interface and execute the following:
npm install --save mysql
Now, you can connect to MySQL, and perform SQL queries in your Node.js applications.

Connect to MySQL

To connect to MySQL server, include "mysql" module (with require()), and use the mysql.createConnection() method, with the "username" and "password" from your MySQL database; then the connect() method to establish the connection.
- Here is an example of connecting to MySQL server:
const mysql = require('mysql');

const con = mysql.createConnection({
  host: 'localhost',
  user: 'name',
  password: 'pass'
});

con.connect(err=>{
  if(err) throw err;
  console.log('Connected to mysql');
});
Save the code above in a file called "mysql_con.js" (for example, in a "test/" folder in "nodejs") and run the file in command line interface:
node test/mysql_con.js
Which will give you this result:
Connected to mysql
- To terminate a connection, you can use the con.end() or con.destroy() method. The end() method takes a callback argument.
con.end(err=>{
  if(err) throw err;
  console.log('Connection is terminated');
});

Create Database

The connection object created in the example above ("con"), has a query() method for querying the database.
The query() method establishes the connection; it takes a sql statements as a parameter, and returns the result in a callback function.
Will use this method to perform SQL queries, to create the database, and to read from (or write to) a MySQL database.

To store data in MySQL, you need to create a database. You can create a database with the "CREATE DATABASE" statement.
- Lets create a database called "nodedb"
const mysql = require('mysql');

const con = mysql.createConnection({
  host: 'localhost',
  user: 'name',
  password: 'pass'
});

let sql ='CREATE DATABASE nodedb';

con.query(sql, (err, res)=>{
  if(err) throw err;
  console.log('Database created.', res);

  con.end(err=>{
    if(err) throw err;
    console.log('Connection is terminated');
  });
});
Save the code above in a file called "mysql_create_db.js" and run the file:
node test/mysql_create_db.js

If you notice that the default collation of MySql is set to "latin1_swedish_ci", to change the default collation to "utf8_general_ci" in MySql:
- Open the "my.ini" file (mysql/bin/my.ini), find the text [mysqld] and add these lines:

character-set-server = utf8
collation-server = utf8_general_ci

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which HTML element can be used to embed a SWF flash content?
<object> <div> <script>
<object type="application/x-shockwave-flash" data="file.swf" width="500" height="250">
 <param name="src" value="file.swf" />
 Your browser not support SWF.
</object>
Which CSS pseudo-class adds a style to an input form field that has keyboard input focus?
:active :focus :hover
input:focus {
  background-color: #88fe88;
}
Click on the instruction which converts a JSON string into a JavaScript object.
JSON.stringify(javascript_object) object.toString() JSON.parse(json_string)
var jsnstr = '{"url": "http://coursesweb.net/", "title": "Web Development Courses"}';
var obj = JSON.parse(jsnstr);
alert(obj.url);
Indicate the PHP function which can be used to create or write a file on server.
fopen() file_put_contents() file_get_contents()
if (file_put_contents("file.txt", "content")) echo "The file was created";
else echo "The file can not be created";
Node.js with MySQL Database

Last accessed pages

  1. Get and Modify content of an Iframe (32367)
  2. $_GET, $_POST and $_REQUEST Variables (33884)
  3. Ajax-PHP Chat Script (49508)
  4. JavaScript Course - Free lessons (31647)
  5. Volume and Surface Area Calculator for 3D objects (11276)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (310)
  2. The Mastery of Love (48)
  3. CSS cursor property - Custom Cursors (36)
  4. Read Excel file data in PHP - PhpExcelReader (35)
  5. PHP-MySQL free course, online tutorials PHP MySQL code (31)