MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Como conectar o MongoDB com o PowerShell?


Eu sei que estou um pouco atrasado, mas tenho brincado com Mongodb e Powershell nos últimos dois dias. A solução mais fácil que encontrei é instalar os cmdlets MongoDB da galeria Powershell:

https://github.com/nightroman/Mdbc

Etapa 1:obter e instalar.

Mdbc é distribuído como o módulo Mdbc da Galeria do PowerShell. No PowerShell 5.0 ou com PowerShellGet você pode instalá-lo por este comando:
Install-Module Mdbc 

Etapa 2:em um prompt de comando do PowerShell, importe o módulo:
Import-Module Mdbc 

Passo 3:Dê uma olhada na ajuda:
help about_Mdbc 
help Connect-Mdbc -full

Em seguida, siga as etapas a seguir para ver se a configuração está funcionando:
# Load the module
Import-Module Mdbc

# Connect the new collection test.test
Connect-Mdbc . test test -NewCollection

# Add some test data
@{_id=1; value=42}, @{_id=2; value=3.14} | Add-MdbcData

# Get all data as custom objects and show them in a table
Get-MdbcData -As PS | Format-Table -AutoSize | Out-String

# Query a document by _id using a query expression
$data = Get-MdbcData (New-MdbcQuery _id -EQ 1)
$data

# Update the document, set the 'value' to 100
$data._id | Update-MdbcData (New-MdbcUpdate -Set @{value = 100})

# Query the document using a simple _id query
Get-MdbcData $data._id

# Remove the document
$data._id | Remove-MdbcData

# Count remaining documents, 1 is expected
Get-MdbcData -Count