const {runQuery, runSelectQuery} = require('./queries'); // Check existing job application async function checkExistingJobApplication(name, email, role) { const checkQuery = `SELECT * FROM applicants WHERE name = ? AND email = ? AND role = ?;`; const results = await runSelectQuery(checkQuery, [name, email, role]); console.log(results); return results.length > 0; } // Insert job application async function insertJobApplication(name, email, phone, experience, role, linkedin, resume, filename) { const insertQuery = `INSERT INTO applicants (date, time, name, email, phone, experience, role, linkedin, resume, filename) VALUES (DATE("now"), TIME("now"), ?, ?, ?, ?, ?, ?, ?, ?);`; await runQuery(insertQuery, [name, email, phone, experience, role, linkedin, resume, filename]); } module.exports = { checkExistingJobApplication, insertJobApplication };