필터 지우기
필터 지우기

tall array with sqlite3

조회 수: 1 (최근 30일)
Guilherme Salome
Guilherme Salome 2017년 8월 22일
편집: José-Luis 2017년 8월 22일
I have a sqlite3 database (.db) stored in my hard drive, and I would like to use the tall array functionality with it. The problem is that I cannot connect to it using the databaseDatastore function. Running:
dbpath = fullfile(pwd,'options.db');
conn = sqlite(dbpath,'readonly');
dbds = databaseDatastore(conn,'SELECT * FROM DATA');
I get an error saying that the value of 'conn' is invalid, and that I should be using 'database.jdbc.connection'.
Question: I have a sqlite3 database and want to use tall arrays with it. How do I do it?
Thanks for helping! :D

채택된 답변

José-Luis
José-Luis 2017년 8월 22일
Save yourself a headache and use sqlite() instead.
  댓글 수: 2
Guilherme Salome
Guilherme Salome 2017년 8월 22일
Hey Jose, that is what I tried using, but it is not working with the databaseDatastore function. All I want is to have
tt = tall(dbds);
So that I can deal with a big amount of data. Any suggestions?
José-Luis
José-Luis 2017년 8월 22일
편집: José-Luis 2017년 8월 22일

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by