Curs Javascript

- Delete cu Node.js in MySQL

Metoda query() a modulului "mysql" poate efectua interogari SQL care actualizeaza (Update) si sterg (Delete) inregistrari in tabelul mysql.
Pentru a evita "SQL injection", este indicat sa filtrati datele furnizate de utilizator inainte de a le folosi in interiorul unei interogari SQL. Puteti face acest lucru folosind metoda mysql.escape().
Alternativ, puteti folosi caractere '?' ca inlocuitori pentru valorile pe care doriti sa le filtrati, apoi adaugati valorile intr-un array ca al doilea argument a metodei query() (in aceeasi ordine ca si inlocuitorii '?' din interogarea sql).

Update cu Node.js in MySQL

Puteti actualiza inregistrari existente intr-un tabel MySQL folosind instructiunea "UPDATE".
Pentru a obtine numarul de randuri afectate/actualizate, se foloseste proprietatea affectedRows a obiectului rezultat.

- In acest exemplu vom actualiza datele din coloana "address" din randul cu id-ul 5, folosind metoda mysql.escape() pentru a filtra datele in interogarea SQL:
const mysql = require('mysql');

const pool = mysql.createPool({
  host: '127.0.0.1',
  user: 'root',
  password: 'pass',
  database: 'nodedb',
  charset: 'utf8'
});

//update with escape()
var adr ='Happy 12';
var id =5;
let sql ='UPDATE friends SET address ='+ mysql.escape(adr) +' WHERE id ='+ mysql.escape(id);

pool.getConnection((err, con)=>{
  if(err) throw err;

  con.query(sql, (err, res)=>{
    if(err) throw err;
    con.release(); //release the connection
    console.log('Record(s) updated: '+ res.affectedRows);
  });
});
- In urmatorul cod se folosesc inlocuitori '?' in instructiunea Update:
const mysql = require('mysql');

const pool = mysql.createPool({
  host: '127.0.0.1',
  user: 'root',
  password: 'pass',
  database: 'nodedb',
  charset: 'utf8'
});

//update using placeholders
let sql ='UPDATE friends SET address =? WHERE id =?';
var placeh =['Happy 12', 5]; //values for placeholders

pool.getConnection((err, con)=>{
  if(err) throw err;

  con.query(sql, placeh, (err, res)=>{
    if(err) throw err;
    con.release(); //release the connection
    console.log('Record(s) updated: '+ res.affectedRows);
  });
});
- O alta metoda cu inlocuitori '?', adaugarea numelor coloanelor si a valorilor intr-un obiect:
const mysql = require('mysql');

const pool = mysql.createPool({
  host: '127.0.0.1',
  user: 'root',
  password: 'pass',
  database: 'nodedb',
  charset: 'utf8'
});

//update using placeholders
let sql ='UPDATE friends SET ? WHERE ?';
var adr ={address:'Happy 12'};
var id ={id:5};

pool.getConnection((err, con)=>{
  if(err) throw err;

  con.query(sql, [adr, id], (err, res)=>{
    if(err) throw err;
    con.release(); //release the connection
    console.log('Record(s) updated: '+ res.affectedRows);
  });
});
Resultat:
Record(s) updated: 1

Delete cu Node.js in MySQL

Puteti sterge inregistrari dintr-un tabel MySQL folosind instructiunea "DELETE FROM".
Pentru a obtine numarul randurilor afectate/sterse, se foloseste proprietatea affectedRows a obiectului resultat.
const mysql = require('mysql');

const pool = mysql.createPool({
  host: '127.0.0.1',
  user: 'root',
  password: 'pass',
  database: 'nodedb',
  charset: 'utf8'
});

//deleted with placeholders
let sql ='DELETE FROM friends WHERE id =? OR name =?';
var id =2;
var name='Olpram';

pool.getConnection((err, con)=>{
  if(err) throw err;

  con.query(sql, [id, name], (err, res)=>{
    if(err) throw err;
    con.release(); //release the connection
    console.log('Rows deleted: '+ res.affectedRows);
  });
});
Resultat:
Rows deleted: 2

Un Test simplu in fiecare zi

HTML
CSS
JavaScript
PHP-MySQL
Engleza
Spaniola
Care tag HTML5 defineste un text marcat, evidentiat?
<mark> <embed> <span>
<p>Cursuri graruite: <mark>MarPlo.net</mark> , jocuri, anime.</p>
Ce pseudo-clasa CSS defineste un stil la element cand mouse-ul e deasupra lui?
:focus :hover :active
a:hover {
  font-weight: bold;
  color: #00da01;
}
Clic pe functia ce returneaza un sir cu un numar rotunjit la x decimale.
toPrecision(x) toFixed(x) floor(x)
var num = 12.34567;
num = num.toFixed(2);
alert(num);       // 12.35
Indicati functia PHP care adauga continutul unui fisier intr-un array.
[) file() readfile()
$arr = file("a_file.txt", FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
var_export($arr);
Clic pe raspunsul potrivit la intrebarea: "What time is it?"
On the 7th of July 1996 It is a quarter to 5. Nice weather.
What time is it? It is a quarter to 5.
- Cat este ora? E 5 fara un sfert.
Indicati raspunsul potrivit la intrebarea: "¿Qué hora es?"
Hace buen tiempo. En el 7 de julio de 1996 Son las tres menos cuarto.
¿Qué hora es? Son las tres menos cuarto.
- Cat este ora? E 3 fara un sfert.
Node.js - Actualizare si Stergere date in tabel MySQL

Last accessed pages

  1. Parcurgere Array secvential si asociativ (1588)
  2. PHP OOP - Clase, Obiecte, constructor (5102)
  3. Scripturi JavaScript (3639)
  4. Download carti electronice si programe pentru Limba Engleza (43198)
  5. Titluri, Paragrafe, Un nou rand, Linie orizontala (32360)

Popular pages this month

  1. Cursuri si Tutoriale: Engleza, Spaniola, HTML, CSS, Php-Mysql, JavaScript, Ajax (767)
  2. Exercitii engleza - English Tests and exercises - Grammar (596)
  3. Prezentul simplu si continuu - Present Tense Simple and Continuous (587)
  4. Gramatica limbii engleze - Prezentare Generala (580)
  5. Prezentul simplu - Exercitii si teste incepatori (504)