Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Using format specifiers for extracting data from sqlite database file

1 visualización (últimos 30 días)
Sushanth Manchikatla
Sushanth Manchikatla el 1 de Ag. de 2020
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
In the given code snippet, what should be done at the "?" to get the details mentioned in the query from a table BIO in the database file database.db?
I need to place name (John) at the question mark. What should be done to get the result?
(No element in the database table is NULL)
con = sqlite('database.db');
name = "John";
sqlquery = "SELECT AGE,EMAIL,EDUCATION FROM BIO WHERE NAME == ?";
result = fetch(con,sqlquery);

Respuestas (1)

Jalaj Gambhir
Jalaj Gambhir el 25 de Ag. de 2020
Editada: Jalaj Gambhir el 25 de Ag. de 2020
Hi,
Have a look at the answer here. You have to create a string using square brackets to concatenate the variable with the remaining query.
Hope this helps!

Community Treasure Hunt

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

Start Hunting!

Translated by