You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
pizza.krasnikov.pro/.history/pages/api/loadingStock_20220517192822.ts

22 lines
701 B

// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
import { QueryError, RowDataPacket } from 'mysql2';
import type { NextApiRequest, NextApiResponse } from 'next';
import { db } from "../../server/db/connect";
const queryString = "INSERT INTO ProductOrder (product_id, customer_id, product_quantity) VALUES (?, ?, ?)"
type Data = {
QueryError: string,
RowDataPacket: string
}
export default function handler(
req: NextApiRequest,
res: NextApiResponse<Data>
) {
if (req.method === 'POST') {
db.query(queryString, (err: QueryError, rows: RowDataPacket[]) => {
console.log('The solution is: ', rows[0]['solution']);
});
}
}