I am using Spring Data MongoDB and I use the method
findAll(Example example, Pageable pageable)
of the QueryByExampleExecutor interface, to get all the entries in a collection. The problem is that I'm not receiving all the re...
Hi, I'm running a final project in Heroku using MongoLab and Multer to upload photos, it seems to work fine, but after a few hours or less the photos disappear from the page, but leave the img placeholder, the symbol appears when the browser can...
I have saved images in a Mongo collection and now I need to recover that binary, my collection is called photos.
These are my advances:
string conn = "mongodb://localhost";
var client= new MongoClient(conn);
var server = client.GetSer...
Good morning, I have a web application made in Nodejs, in one of the requests I must send data of different models. My query is as follows Is this the correct way?
function getProduct (req, res) {
let productId = req.params.productId
Produ...
Again I was caught, in my slow progress with PyQt. Now I am with another example of connection with bbdd. The example is simple a QDialog, in which I have a button and pressing it inserts a record in a bodd Mongodb. The program I have divided in...
in my collection Students I have an arrangement in MongoDB in the following way:
"_id" : "fAFhzdtJ7wpJbdfbp",
"Nombre" : "Rastalovely",
"Materias" : [
"ZNumksY9STZxc8a8W",
"W6BPzEwTaz9E7FxZB"
]
The Matters field has a relationship...
I am using the pymongo module, to record data in a mongodb collection. But, when I go to review the data, I find that they are not recorded in the order in which I wrote them. If I insert them directly from the mongodb shell, there are no proble...
Hi everyone, I have my MeteorJS App that connects to your database, but I need to connect it to my Robomongo external, that is my MongoDB strong> runs on a different port
Some advances:
in my windows console:
MONGO_URL=mongodb://12...
I have a question about MongoDB and C #, I need to filter the searches by an employee's name, that is, you put your name in a text box and if it exists the data is displayed in DataGrid .
These are my advances:
public class Entity
{...