Using Database Toolbox to connect to and query Cosmos DB

조회 수: 7 (최근 30일)
KAE
KAE 2021년 3월 25일
댓글: KAE 2022년 8월 15일
I am new to Matlab's Database Toolbox and have limited experiences with databases in general. There is an Azure Cosmos DB that I would like to connect to and run SQL queries against. I saw MATLAB Interface for Azure Cosmos DB, but it's complex and I'm hoping there's a way to connect straight from the Database Toolbox. I am using R2020a, could update if needed though there doesn't seem to any mention of improvements related to Cosmos in the Database Toolbox release notes.
Any help on setting up the connection to the database, and running an example SQL query, would be much appreciated.

채택된 답변

KAE
KAE 2021년 4월 8일
편집: KAE 2021년 4월 8일
In case it helps someone else: I got extensive help from Mathworks on using the MATLAB Interface for Azure Cosmos DB and am now able to run SQL queries on my Cosmos DB and pull the results into MATLAB. Below is example code based on modifying what Mathworks provided. You can only run this after you install all the third party software required by the Interface.
%% Add Azure Cosmos DB SQL paths
% Change next line to the directory where you installed the Azure startup.m file
myAzurePath = ['C:\MyAzureInstallDirectory\matlab-azure-cosmos-db-master\' ...
'matlab-azure-cosmos-db-master\Software\MATLAB\SQL\'];
run([myAzurePath 'startup.m']) % Should see "Adding Azure Cosmos DB SQL Paths"
%% Set up the client & config
databaseId = 'MyDatabaseName'; % Change to your database name
database = azure.documentdb.Database(databaseId);
docClient = azure.documentdb.DocumentClient(); % Create a document client
%% Confirm that you can connect to database
options = azure.documentdb.RequestOptions();
databaseLink = ['/dbs/',database.getId()];
if docClient.existsDatabase(databaseLink, options)
disp('Connected successfully to database')
end
collectionId = 'MyContainerName'; % Change to your container name
collectionLink = ['/dbs/',databaseId,'/colls/',collectionId];
% Can ignore any log complaints that appear here
%% Query to retrieve first few database records
options = azure.documentdb.FeedOptions();
options.setEnableCrossPartitionQuery(true);
% Edit this example query, which retrieves the first 10 records
queryStr = ['SELECT TOP 10 * FROM MyContainerName c'];
response = docClient.queryDocuments(collectionLink, queryStr, options);
responseCellArray = response.getQueryCellArray();
iRecord = 1; % Get the first of the 10 records retreived
FirstRecord = jsondecode(responseCellArray{iRecord}.toJson); % Output structure containing first record
  댓글 수: 3
Karthik
Karthik 2022년 8월 11일
Hi Kae, We're trying to follow the instructions listed for cosmodb connection and this is the error message we keep getting when we try to run the code with the connection settings that you have recommended
Unable to resolve the name 'com.microsoft.azure.documentdb.Database'
Please let me know if there's anything else we need to check. Thank you !!
KAE
KAE 2022년 8월 15일
I would say, contact support@mathworks.com for additional help since I am using this somewhat blindly. There are many details that seem to have to be correct for it to work so their help can save you time.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Database Toolbox에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by