Borrar filtros
Borrar filtros

how to enable extension in sqlite?

4 visualizaciones (últimos 30 días)
Saeed Behzadi
Saeed Behzadi el 2 de Sept. de 2017
Respondida: Bob S el 5 de Nov. de 2020
Hi everybody
In python there is a function to enable extension for sqlite as:
con.enable_load_extension(True)
In matlab, there is no such function in "sqlite" object, or at least I couldn’t find. how can we enable/disable extension for sqlite in matlab.
thanks in advance

Respuestas (1)

Bob S
Bob S el 5 de Nov. de 2020
Are you trying to use sqlite with the database toolbox? If not, you can access sqlite databases using python:
>> sql = py.importlib.import_module('sqlite3');
>> conn = sql.connect('databaseFileName');
>> con.load_extension('whatever your extension is')

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by