Este equipo de trabajo ha estado horas investigando para darle respuesta a tus búsquedas, te compartimos la respuesta por eso esperamos que sea de gran apoyo.
Ejemplo 1: cómo administrar una conexión db en javascript
//put these lines in a seperate fileconst mysql =require('mysql2');const connection = mysql.createPool(
host:"localhost",
user:"",
password:"",
database:""// here you can set connection limits and so on);
module.exports= connection;//put these on destination pageconst connection =require('../util/connection');asyncfunctiongetAll()const sql ="SELECT * FROM tableName";const[rows]=await connection.promise().query(sql);return rows;
exports.getAll= getAll;
Ejemplo 2: js lee la base de datos mysql
// Use https://github.com/JackChilds/jsmysqldb// Then once it's setup you can just do this:// Config that will be sent to serverconst config ="table":"customers","limit":"50","offset":"0";// Use the _POST_REQUEST function to send data to the server and get a response_POST_REQUEST("link-to-server/database.php",'config='+JSON.stringify(config),(response)=>// Convert the response into an array of rows:var data =JSON.parse(response);// Now do what you want with data// data[row index][column name]);
Aquí puedes ver las reseñas y valoraciones de los lectores
Si haces scroll puedes encontrar las interpretaciones de otros programadores, tú además tienes el poder dejar el tuyo si lo deseas.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)