node-oracledb/examples/webapp.js

197 lines
6.1 KiB
JavaScript
Raw Normal View History

2015-01-21 00:51:22 +08:00
/* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. */
/******************************************************************************
*
* You may not use the identified files except in compliance with the Apache
* License, Version 2.0 (the "License.")
*
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*
* See the License for the specific language governing permissions and
* limitations under the License.
*
* NAME
* webapp.js
*
* DESCRIPTION
* Shows a web based query using connections from connection pool.
2015-05-05 01:16:10 +08:00
*
2015-01-21 00:51:22 +08:00
* This displays a table of employees in the specified department.
2015-05-05 01:16:10 +08:00
*
2015-01-21 00:51:22 +08:00
* The script creates an HTTP server listening on port 7000 and
* accepts a URL parameter for the department ID, for example:
* http://localhost:7000/90
*
2015-05-05 01:16:10 +08:00
* Uses Oracle's sample HR schema. Scripts to create the HR schema
* can be found at: https://github.com/oracle/db-sample-schemas
2015-01-21 00:51:22 +08:00
*
*****************************************************************************/
var http = require('http');
var url = require('url');
var oracledb = require('oracledb');
var dbConfig = require('./dbconfig.js');
var portid = 7000; // HTTP listening port number
// Main entry point. Creates a connection pool, on callback creates an
// HTTP server and executes a query based on the URL parameter given
// The pool values are arbitrary for the sake of showing how to set the properties.
oracledb.createPool (
{
user : dbConfig.user,
password : dbConfig.password,
connectString : dbConfig.connectString,
poolMax : 44,
poolMin : 2,
poolIncrement : 5,
poolTimeout : 4
},
function(err, pool)
{
if (err) {
2015-05-05 01:16:10 +08:00
console.error("createPool() callback: " + err.message);
2015-01-21 00:51:22 +08:00
return;
}
// Create HTTP server and listen on port - portid
hs = http.createServer (
2015-05-05 01:16:10 +08:00
function(request, response) // Callback gets HTTP request & response object
2015-01-21 00:51:22 +08:00
{
2015-05-05 01:16:10 +08:00
var urlparts = request.url.split("/");
2015-01-21 00:51:22 +08:00
var deptid = urlparts[1];
2015-05-05 01:16:10 +08:00
htmlHeader(response,
"Oracle Database Driver for Node.js" ,
"Example using node-oracledb driver");
2015-01-21 00:51:22 +08:00
if (deptid != parseInt(deptid)) {
2015-05-05 01:16:10 +08:00
handleError(response, 'URL path "' + deptid +
'" is not an integer. Try http://localhost:' + portid + '/30', null);
2015-01-21 00:51:22 +08:00
return;
}
// Checkout a connection from the pool
pool.getConnection (
function(err, connection)
{
if (err) {
2015-05-05 01:16:10 +08:00
handleError(response, "getConnection() failed ", err);
2015-01-21 00:51:22 +08:00
return;
}
2015-05-05 01:16:10 +08:00
// console.log("Connections open: " + pool.connectionsOpen);
// console.log("Connections in use: " + pool.connectionsInUse);
2015-01-21 00:51:22 +08:00
connection.execute(
"SELECT employee_id, first_name, last_name "
+ "FROM employees "
+ "WHERE department_id = :id",
[deptid], // bind variable value
function(err, result)
{
if (err) {
2015-05-05 01:16:10 +08:00
connection.release(
function(err)
{
if (err) {
handleError(response, "execute() error release() callback", err);
return;
}
});
handleError(response, "execute() callback", err);
2015-01-21 00:51:22 +08:00
return;
}
2015-05-05 01:16:10 +08:00
displayResults(response, result, deptid);
2015-01-21 00:51:22 +08:00
/* Release the connection back to the connection pool */
connection.release(
function(err)
{
if (err) {
2015-05-05 01:16:10 +08:00
handleError(response, "normal release() callback", err);
2015-01-21 00:51:22 +08:00
return;
}
});
2015-05-05 01:16:10 +08:00
htmlFooter(response);
2015-01-21 00:51:22 +08:00
});
});
});
hs.listen(portid, "localhost");
console.log("Server running at http://localhost:" + portid);
2015-01-21 00:51:22 +08:00
});
2015-05-05 01:16:10 +08:00
// Report an error
function handleError(response, text, err)
2015-01-21 00:51:22 +08:00
{
2015-05-05 01:16:10 +08:00
if (err) {
2015-05-27 05:40:40 +08:00
text += err.message
2015-05-05 01:16:10 +08:00
}
console.error(text);
response.write("<p>Error: " + text + "</p>");
htmlFooter(response);
2015-01-21 00:51:22 +08:00
}
2015-05-05 01:16:10 +08:00
// Display query results
function displayResults(response, result, deptid)
2015-01-21 00:51:22 +08:00
{
2015-05-05 01:16:10 +08:00
response.write("<h2>" + "Employees in Department " + deptid + "</h2>");
response.write("<table>");
// Column Title
response.write("<tr>");
for (col = 0; col < result.metaData.length; col++) {
response.write("<td>" + result.metaData[col].name + "</td>");
}
response.write("</tr>");
// Rows
for (row = 0; row < result.rows.length; row++) {
response.write("<tr>");
for (col = 0; col < result.rows[row].length; col++) {
response.write("<td>" + result.rows[row][col] + "</td>");
}
response.write("</tr>");
}
response.write("</table>");
2015-01-21 00:51:22 +08:00
}
2015-05-05 01:16:10 +08:00
// Prepare HTML header
function htmlHeader(response, title, caption)
2015-01-21 00:51:22 +08:00
{
2015-05-05 01:16:10 +08:00
response.writeHead (200, {"Content-Type" : "text/html" });
response.write ("<!DOCTYPE html>");
response.write ("<html>");
response.write ("<head>");
response.write ("<style>"
+ "body {background:#FFFFFF;color:#000000;font-family:Arial,sans-serif;margin:40px;padding:10px;font-size:12px;text-align:center;}"
+ "h1 {margin:0px;margin-bottom:12px;background:#FF0000;text-align:center;color:#FFFFFF;font-size:28px;}"
+ "table {border-collapse: collapse; margin-left:auto; margin-right:auto;}"
+ "td {padding:8px;border-style:solid}"
+ "</style>\n");
response.write ("<title>" + caption + "</title>");
response.write ("</head>");
response.write ("<body>");
response.write ("<h1>" + title + "</h1>");
2015-01-21 00:51:22 +08:00
}
2015-05-05 01:16:10 +08:00
// Prepare HTML footer
function htmlFooter(response)
2015-01-21 00:51:22 +08:00
{
2015-05-05 01:16:10 +08:00
response.write("</body>\n</html>");
response.end();
2015-01-21 00:51:22 +08:00
}