#CIMongoDB - Codeigniter-mongodb-library
Wiki:https://fifths.github.com/mongodb-library-for-codeigniter.html
#Methods
##Insert Method
insertInsert a new document into a collection
##Select Method
selectGet select fields from returned documentswhereORget_whereWhere section of the querywhere_inWhere something is in an array of somethingwhere_in_allWhere something is in all of an array of * somethingwhere_not_inWhere something is not in array of somethingwhere_orWhere something is based on orwhere_gtWhere something is greater than somethingwhere_gteWhere something is greater than or equal to somethingwhere_ltWhere something is less than somethingwhere_lteWhere something is less than or equal to somethingwhere_betweenWhere something is in between to somethingwhere_between_neWhere something is in between and but not equal to somethingwhere_neWhere something is not equal to somethinglikeWhere something is search by like queryorder_byOrder the resultslimitORoffsetLimit the number of returned resultscountDocument Count based on where queryfind_oneRetrieve single document from collection
##Update Method
setSets a field to a valueunset_fieldUnsets a fieldaddtosetAdds a value to an array if doesn't existpushPushes a value into an array fieldpopPops a value from an array fieldpullRemoves an array by the value of a fieldrename_fieldRename a fieldincIncrements the value of a fieldmulMultiple the value of a fieldmaxUpdates the value of the field to a specified value if the specified value is greater than the current value of the fieldminUpdates the value of the field to a specified value if the specified value is less than the current value of the field.updateUpdate a single document in a collection
##Delete Method
deleteDelete a single document in a collection
##DB Method
switch_dbSwitch to a different database
##Extra Helper
dateCreate or convert date to MongoDB based DatetimestampCreate or convert Timestamp to MongoDB based Timestamp