Posts by Gerci Lisboa • 1 point
3 posts
-
-1
votes2
answers708
viewsA: sort numerical data mongodb
@Tuxpilgrim I performed a test, but it didn’t work. Maybe because I’m performing Sort after performing the Find command, because what I want order is a subform. where the given item is Collection,…
mongodbanswered Gerci Lisboa 1 -
0
votes2
answers708
viewsQ: sort numerical data mongodb
I am trying to sort numeric data with a field set as number in Collection and the sort does not present as I need. Example: 1,2,3,10 after sorting the displayed result: 1,10,2,3. How to modify the…
mongodbasked Gerci Lisboa 1 -
0
votes1
answer40
viewsQ: Error to use mongodb filter
I have an error trying to run a filter in the database. var params = '{"cd_entidade":"'+ vcd_entidade+'"}'; Movmaterial.find(params).toArray(function(err,docs){ if (err) throw err;…