Skip to content

Commit

Permalink
Project Initial Start-up
Browse files Browse the repository at this point in the history
Refactored for C# Driver 2.0.0 RC0
Added Unit Test Stubs
  • Loading branch information
RBX Systems committed Mar 19, 2015
1 parent 4c7242d commit 9f68bc4
Show file tree
Hide file tree
Showing 78 changed files with 307 additions and 290 deletions.
Binary file modified CSharp/bin/MongoDB.Bson.dll
Binary file not shown.
Binary file modified CSharp/bin/MongoDB.Driver.Core.dll
Binary file not shown.
Binary file modified CSharp/bin/MongoDB.Driver.Legacy.dll
Binary file not shown.
Binary file modified CSharp/bin/MongoDB.Driver.dll
Binary file not shown.
Binary file modified Example/MongoDB.SimpleExample.vi
Binary file not shown.
Binary file added Example/MongoDB.SimpleExample2.vi
Binary file not shown.
41 changes: 18 additions & 23 deletions MongoDB.Client.lvclass

Large diffs are not rendered by default.

Binary file modified MongoDB.Client/MongoDB.Connection.Close.vi
Binary file not shown.
Binary file modified MongoDB.Client/MongoDB.ConnectionOpen.vi
Binary file not shown.
Binary file modified MongoDB.Client/MongoDB.CreateIndex.vi
Binary file not shown.
Binary file modified MongoDB.Client/MongoDB.GetDatabase.vi
Binary file not shown.
Binary file modified MongoDB.Client/Read MongoDB.Server.vi
Binary file not shown.
Binary file modified MongoDB.Client/Write MongoDB.Server.vi
Binary file not shown.
479 changes: 241 additions & 238 deletions MongoDB.Collection.lvclass

Large diffs are not rendered by default.

Binary file modified MongoDB.Collection/MongoDB.CollectionDrop.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.CollectionDropAll.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.CollectionDropIndex.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.CollectionDropIndexByName.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.CollectionExists.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.CollectionReIndex.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.DocumentCount.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.DocumentFind.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.DocumentFindAll.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.DocumentInsert.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.DocumentRemove.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.DocumentRemoveAll.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.DocumentSave.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.DocumentUpdate.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.EnsureIndex.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.FindOne.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.FindOneByID.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.FindOneByQuery.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.FindandModify.vi
Binary file not shown.
Binary file modified MongoDB.Collection/MongoDB.FindandRemove.vi
Binary file not shown.
Binary file modified MongoDB.Collection/Read MongoDB.Collection.vi
Binary file not shown.
Binary file modified MongoDB.Collection/Write MongoDB.Collection.vi
Binary file not shown.
62 changes: 40 additions & 22 deletions MongoDB.Database.lvclass

Large diffs are not rendered by default.

Binary file modified MongoDB.Database/MongoDB.CollectionExists.vi
Binary file not shown.
Binary file added MongoDB.Database/MongoDB.CreateCollection.vi
Binary file not shown.
Binary file modified MongoDB.Database/MongoDB.Database.AddUser.vi
Binary file not shown.
Binary file modified MongoDB.Database/MongoDB.Database.Close.vi
Binary file not shown.
Binary file modified MongoDB.Database/MongoDB.Database.CreateCollection.vi
Binary file not shown.
Binary file modified MongoDB.Database/MongoDB.Database.Drop.vi
Binary file not shown.
Binary file modified MongoDB.Database/MongoDB.DropCollection.vi
Binary file not shown.
Binary file modified MongoDB.Database/MongoDB.FindAllUsers.vi
Binary file not shown.
Binary file modified MongoDB.Database/MongoDB.GetCollection.vi
Binary file not shown.
Binary file modified MongoDB.Database/MongoDB.GetCollectionNames.vi
Binary file not shown.
Binary file added MongoDB.Database/MongoDB.GetCreate_Collection.vi
Binary file not shown.
Binary file modified MongoDB.Database/MongoDB.RemoveUser.vi
Binary file not shown.
Binary file modified MongoDB.Database/MongoDB.RenameCollection.vi
Binary file not shown.
Binary file modified MongoDB.Database/Read MongoDB.Database.vi
Binary file not shown.
Binary file modified MongoDB.Database/Write MongoDB.Database.vi
Binary file not shown.
Binary file added MongoDB.Helper/MongoDB.EnumerateCursor.vi
Binary file not shown.
Binary file added MongoDB.Helper/MongoDB.EnumerateIEnum.vi
Binary file not shown.
Binary file removed MongoDB.Helper/MongoDB.EnumerateResult.vi
Binary file not shown.
Binary file added MongoDB.Helper/MongoDB.FormatObject_ID.vi
Binary file not shown.
Binary file modified MongoDB.Helper/MongoDB.JSONtoQueryDoc.vi
Binary file not shown.
Binary file modified MongoDB.Helper/MongoDB.Parse.CommandResult.vi
Binary file not shown.
2 changes: 1 addition & 1 deletion MongoDB.lvlps
@@ -1,3 +1,3 @@
[ProjectWindow_Data]
ProjectExplorer.ClassicPosition[String] = "57,294,786,668"
ProjectExplorer.ClassicPosition[String] = "33,2,828,338"

13 changes: 7 additions & 6 deletions MongoDB.lvproj
Expand Up @@ -17,21 +17,22 @@
<Item Name="CSharp" Type="Folder" URL="../CSharp">
<Property Name="NI.DISK" Type="Bool">true</Property>
</Item>
<Item Name="Notes" Type="Folder">
<Item Name="ToDo.vi" Type="VI" URL="../ToDo.vi">
<Property Name="marked" Type="Int">0</Property>
</Item>
</Item>
<Item Name="Notes" Type="Folder"/>
<Item Name="Helpers" Type="Folder">
<Item Name="MongoDB.JSONtoQueryDoc.vi" Type="VI" URL="../MongoDB.Helper/MongoDB.JSONtoQueryDoc.vi">
<Property Name="marked" Type="Int">0</Property>
</Item>
<Item Name="MongoDB.Parse.CommandResult.vi" Type="VI" URL="../MongoDB.Helper/MongoDB.Parse.CommandResult.vi">
<Property Name="marked" Type="Int">0</Property>
</Item>
<Item Name="MongoDB.EnumerateResult.vi" Type="VI" URL="../MongoDB.Helper/MongoDB.EnumerateResult.vi">
<Item Name="MongoDB.EnumerateIEnum.vi" Type="VI" URL="../MongoDB.Helper/MongoDB.EnumerateIEnum.vi"/>
<Item Name="MongoDB.EnumerateCursor.vi" Type="VI" URL="../MongoDB.Helper/MongoDB.EnumerateCursor.vi">
<Property Name="marked" Type="Int">0</Property>
</Item>
<Item Name="MongoDB.FormatObject_ID.vi" Type="VI" URL="../MongoDB.Helper/MongoDB.FormatObject_ID.vi"/>
</Item>
<Item Name="UnitTests" Type="Folder" URL="../UnitTests">
<Property Name="NI.DISK" Type="Bool">true</Property>
</Item>
<Item Name="MongoDB.Client.lvclass" Type="LVClass" URL="../MongoDB.Client.lvclass"/>
<Item Name="MongoDB.Database.lvclass" Type="LVClass" URL="../MongoDB.Database.lvclass"/>
Expand Down
Binary file modified ToDo.vi
Binary file not shown.
Binary file added UnitTests/Collection Exists.vi
Binary file not shown.
Binary file added UnitTests/Collection Not Exists.vi
Binary file not shown.
Binary file added UnitTests/Connection Not OK.vi
Binary file not shown.
Binary file added UnitTests/Connection OK.vi
Binary file not shown.
Binary file added UnitTests/Database Exists.vi
Binary file not shown.
Binary file added UnitTests/Database Not Exists.vi
Binary file not shown.
Binary file added UnitTests/Document Exists.vi
Binary file not shown.
Binary file added UnitTests/Document Not Exists.vi
Binary file not shown.
Binary file added UnitTests/DropCollection Not OK.vi
Binary file not shown.
Binary file added UnitTests/DropCollection OK.vi
Binary file not shown.
Binary file added UnitTests/DropDatabase Not OK.vi
Binary file not shown.
Binary file added UnitTests/DropDatabase OK.vi
Binary file not shown.
Binary file added UnitTests/Find Query Not OK.vi
Binary file not shown.
Binary file added UnitTests/Find Query OK.vi
Binary file not shown.
Binary file added UnitTests/Insert Bad Document.vi
Binary file not shown.
Binary file added UnitTests/Invalid User.vi
Binary file not shown.
Binary file added UnitTests/Lost Connection.vi
Binary file not shown.

0 comments on commit 9f68bc4

Please sign in to comment.