I am trying to connect my Matlab with MongoDB using the mongoc function in Matlab 2021b version. But I am having this error - Files\MATLAB\R2021b\bin\win64\builtins\databas
Mostrar comentarios más antiguos
I have trying to connect my Matlab with MongoDB using the mongoc function in Matlab R 2021b version.
But I am having this error -
Files\MATLAB\R2021b\bin\win64\builtins\database_builtins\mwlibmongo_builtinimpl.dll failed with error: not connected: not connected
The specified module could not be found.
Below is my code;
addpath( [ '..' filesep 'MALARIA' filesep 'C Driver' filesep 'mongo-c-driver-1.17.6.tar.gz'] );
server = '127.0.0.1';
port = 27017;
dbname = "TestDB";
% Connect to server
conn = mongoc(server,port,dbname) ;
1 comentario
gabriel paranthoen
el 28 de En. de 2022
Hi,
I fixed the error installing visualcode c++ prior installing the database toolbox.
the connector using the mongodb c++ driver, it's required I guess during the installation.
gabriel
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 30 de Dic. de 2021
0 votos
You cannot add a file with addpath() . MATLAB will not automatically expand the file and look inside it.
Also, if what you posted is the complete message, then you are having a problem with spaces in the directory name of the DLL -- but it is not obvious at the moment why that particular DLL was being looked for.
Categorías
Más información sobre Software Development en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!