Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. //instanciando o modulo mysql
  2.  
  3. return connection;
  4.  
  5. //recuperando a biblioteca do express
  6.  
  7. //setup do express
  8.  
  9. module.exports = function(app){
  10.  
  11. //instanciando o retorno da funcao da conexao
  12. var connection = app.infra.dbConnection();
  13.  
  14. app.get('/home', function(request, response){
  15. connection.query('SELECT * from usuarios ', function(erro, retorno){
  16. response.render("home/index", { lista: retorno });
  17. });
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement