Berikut adalah contoh2 sytax yang digunakan MongoDB dalam berbagai bahasa pemrograman
JavaScript |
[ ] |
{} |
{ x : 1 } |
{ x : 1 } |
connect("www.example.net") |
cursor.next() |
cursor.hasNext() |
collection.findOne() |
db.eval() |
PHP |
array() |
new stdClass |
array('x' => 1) |
new Mongo("www.example.net") |
$cursor->getNext() |
$cursor->hasNext() |
$collection->findOne() |
$db->execute() |
Ruby |
[] |
{} |
{'x' => 1} |
Connection.new("www.example.net") |
cursor.next_document() |
cursor.has_next? |
collection.find_one() |
db.eval() |
0 komentar:
Posting Komentar