Python Mongodb tutorial



Download 0,81 Mb.
Pdf ko'rish
bet5/20
Sana14.06.2022
Hajmi0,81 Mb.
#668856
1   2   3   4   5   6   7   8   9   ...   20
Bog'liq
python mongodb tutorial

2.
 
Python MongoDB ― Create Database 


Python MongoDB

#Getting the database instance 
db = client['mydb'] 
print("Database created........") 
#Verification 
print("List of databases after creating new one") 
print(client.list_database_names()) 
Output 
Database created........ 
List of databases after creating new one: 
['admin', 'config', 'local', 'mydb'] 
You can also specify the port and host names while creating a MongoClient and can access 
the databases in dictionary style. 
Example 
from pymongo import MongoClient 
#Creating a pymongo client 
client = MongoClient('localhost', 27017) 
#Getting the database instance 
db = client['mydb'] 
print("Database created........") 
Output 
Database created........ 


Python MongoDB

A collection in MongoDB holds a set of documents, it is analogous to a table in relational 
databases. 
You can create a collection using the 
createCollection()
method. This method accepts a 
String value representing the name of the collection to be created and an options (optional) 
parameter. 
Using this you can specify the following: 

The 
size
of the collection. 

The 
max
number of documents allowed in the capped collection.

Whether the collection we create should be capped collection (fixed size collection). 

Whether the collection we create should be auto-indexed. 
Syntax 
Following is the syntax to create a collection in MongoDB. 
db.createCollection("
CollectionName
") 
Example 
Following method creates a collection named ExampleCollection. 
> use mydb 
switched to db mydb 
> db.createCollection("ExampleCollection") 
{ "ok" : 1 } 
>
Similarly, following is a query that creates a collection using the options of the 
createCollection() method. 
>db.createCollection("mycol", { capped : true, autoIndexId : true, size :
6142800, max : 10000 } ) 
{ "ok" : 1 } 


Download 0,81 Mb.

Do'stlaringiz bilan baham:
1   2   3   4   5   6   7   8   9   ...   20




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish