async create(entityName, obj) {
const json = JSON.stringify(obj);
try {
const client = await this.pool.connect();
const res = await client.query(
`CALL public.create_${entityName}(null, '${json}');`
);
return res.rows[0].p_result;
} catch (e) {
console.error('StoreDB -> call() ->', e.message);
}
}
[nodejs@ora19c dship]$ id
uid=54323(nodejs) gid=100(users) groups=100(users) context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
[nodejs@ora19c dship]$ sudo grep 'wheel' /etc/group
wheel:x:10:romaro,nodejs
<form class="reg-form">