All over the net i cant find a good tutorial for mongodb basics with node.js - socket.io So my question is:
- An example for inserting into mongodb with node.js-socket.io
- Update the records
- Take from mongo database so
in php/mysql is:
<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("my_db", $con);
mysql_query("INSERT INTO Persons (FirstName, LastName, Age)
VALUES ('Peter', 'Griffin',35)");
mysql_query("INSERT INTO Persons (FirstName, LastName, Age)
VALUES ('Glenn', 'Quagmire',33)");
mysql_close($con);
?>
How this code looks like in mongoDB/node.js-socket.io