-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueries.js
81 lines (72 loc) · 1.92 KB
/
queries.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
const Pool = require("pg").Pool;
const pool = new Pool({
user: "postgres",
host: "localhost",
database: "sample",
password: "nikunj123",
port: 5432,
});
const getUsers = (request, response) => {
pool.query("SELECT * FROM cricketer_data", (error, results) => {
if (error) {
throw error;
}
response.status(200).json(results.rows);
});
};
const getUserById = (request, response) => {
const id = parseInt(request.params.id);
pool.query(
"SELECT * FROM public.cricketer_data WHERE cric_id = $1",
[id],
(error, results) => {
if (error) {
throw error;
}
response.status(200).json(results.rows);
}
);
};
const createUser = (request, response) => {
const { cric_id, cric_name, cric_run, cric_total_run } = request.body;
pool.query(
"INSERT INTO cricketer_data (cric_id, cric_name, cric_run, cric_total_run) VALUES ($1, $2, $3, $4) ",
[cric_id, cric_name, cric_run, cric_total_run],
(error, results) => {
if (error) {
throw error;
}
response.status(201).send(`User added with ID: ${results.insertId}`);
}
);
};
const updateUser = (request, response) => {
const id = parseInt(request.params.id);
const { name, email } = request.body;
pool.query(
"UPDATE users SET name = $1, email = $2 WHERE id = $3",
[name, email, id],
(error, results) => {
if (error) {
throw error;
}
response.status(200).send(`User modified with ID: ${id}`);
}
);
};
const deleteUser = (request, response) => {
const id = parseInt(request.params.id);
pool.query("DELETE FROM users WHERE id = $1", [id], (error, results) => {
if (error) {
throw error;
}
response.status(200).send(`User deleted with ID: ${id}`);
});
};
module.exports = {
getUsers,
getUserById,
createUser,
updateUser,
deleteUser,
};