日期:2014-05-16  浏览次数:20389 次

mongodb使用总结1

?

?

安装mongodb

$ # replace "1.6.4" in the url below with the version you want

$ curl http://downloads.mongodb.org/linux/mongodb-linux-x86_64-1.6.4.tgz > mongo.tgz

$ tar xzf mongo.tgz

$ cd mongo

$./mongod ?#启动服务器

$./mongo #启动客户端

?

?

?

?

?

1.mongodb 命令列表

? Mongo查询语法与SQL语法对照表

?

?

MySQL executable

Oracle executable

Mongo executable

mysqld?

oracle?

mongod?

mysql?

sqlplus?

mongo?

?

?

mongodb查询语法与SQL语法对比

?

SQL Statement?

Mongo Query Language Statement?

C++客户端调用语法

using namespace bson;

DBClientConnection c;

c.connect("somehost");

CREATE TABLE USERS (a Number, b Number)

db.createCollection("mycoll")

?