Posts by Jhonatas Ribeiro • 19 points
2 posts
-
0
votes0
answers48
viewsQ: error when connecting the Knex to the oracle Database
I am trying to connect the database to the nodejs with the Knex, but when making a call on the connection I get the following error, Unhandledpromiserejectionwarning: Error: DPI-1047: Cannot locate…
-
0
votes1
answer43
viewsQ: how to create a table to display an array
I have the Following Code function imprimirArray(id, array) { let span = document.getElementById(id); span.innerHTML = ''; for (let i = 0; i < array.length; i++) { span.innerHTML += 'pontuação: '…