EXECUTE beginner;
28 Dec 2023
PLSQL Procedure to print HELLO WORLD!!
21 Dec 2023
Node js program to write HELLO WORLD
// node js code to create a server and write HELLO WORLD!
var http = require ('http');
http.createServer (function (req,res) => {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('HELLO WORLD!');})
.listen(8080);
// Copy and paste the above code into a file and name it helloworld.js
// Now to run it, open the command prompt and go to the file location
// Execute the first command - >
// npm i http
//Execute the second command ->
// node helloworld.js
// now open browser and copy and paste the link in the URL - http://localhost:8080
20 Nov 2022
C++ Program to call the function
#include<conio.h>
class first
{
public:
void my()
{
cout<<"Welcome to C++";
}
};
void main()
{
first a;
a.my();
getch();
}
===OUTPUT===
Welcome to C++
16 Nov 2022
Java Program to print an integer entered by user
import java.util.Scanner;
public class PrintInteger {
public static void main (String[] args){
Scanner reader = new Scanner (System.in);
int number = reader.nextInt ();
}
15 Nov 2022
Node JS program to connect to SQL table and use WHERE clause
## Node JS program to connect to SQL table and use WHERE clause ##
var mysql = require ('mysql');
// create a connection
var con = mysql.createConnection({
host: "localhost",
user: "admin",
password: "admin",
database: "dummy"
});
con.connect(function(err)){
if (err) throw err;
con.query("Select * from student where age>15", function (err, result, fields) {
if (err) throw err;
console.log (" Result is: ", result);
});
});
14 Nov 2022
Node JS program to delete a text file
## Node JS program to delete a text file ##
var fs = require ('fs');
fs.unlink ('file.txt', function (err){
if (err) throw err;
console.log (' File deleted successfully!! ');
});
===OUTPUT===
Run the program using the node command:
$ node deleteFile.js
File deleted successfully!!
C++ program to create star pattern
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int i, j, n;
cout<<"Enter number of rows\n";
cin>>n;
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
{
cout<<"*";
}
cout<<endl;
}
for(i=n-1;i>=1;i--)
{
for(j=1;j<=i;j++)
{
cout<<"*";
}
cout<<endl;
}
getch();
}
Node JS program to connect to sql server
## Node js program to connect to SQL server ##
var express = require ('express');
var app = express();
app.get ('/', function (req,res){
var sql = require ("mssql");
// database config
var config = {
user: 'admin',
password: 'admin',
server: 'localhost',
database: 'db'
};
// Database connectivity
sql.connect (config, function (err){
if (err) console.log (err);
//create a request object
var request = new sql.Request();
// database query
request.query (' Select * from student', function (err, record){
res.send (record);
});
});
});
var server = app.listen(3000, function (){
console.log (' Server running ....');
});
Node JS program to read a text file
4) Program to read a file from node.js
const fs = require ('fs');
fs.readFile('./test.txt','utf8', (err, data) => {
if (err) {console.error(err); }
console.log ("Data is: "+data);
});