Commit 1adc7fd0 authored by Adrian Negreanu's avatar Adrian Negreanu

sqlite3: more SQLITE_TRANSIENT-s

Signed-off-by: 's avatarAdrian Negreanu <groleo@gmail.com>
parent 397c31a2
...@@ -943,9 +943,9 @@ static void generateSqlite3ForClass(sqlite3 *db, ClassDef *cd) ...@@ -943,9 +943,9 @@ static void generateSqlite3ForClass(sqlite3 *db, ClassDef *cd)
//stmt = i_s_compounddef; //stmt = i_s_compounddef;
bindTextParameter(i_s_compounddef,":name",cd->name()); bindTextParameter(i_s_compounddef,":name",cd->name());
bindTextParameter(i_s_compounddef,":kind",cd->compoundTypeString()); bindTextParameter(i_s_compounddef,":kind",cd->compoundTypeString(),FALSE);
bindIntParameter(i_s_compounddef,":prot",cd->protection()); bindIntParameter(i_s_compounddef,":prot",cd->protection());
bindTextParameter(i_s_compounddef,":refid",cd->getOutputFileBase()); bindTextParameter(i_s_compounddef,":refid",cd->getOutputFileBase(),FALSE);
int id_file = insertFile(db,cd->getDefFileName().data()); int id_file = insertFile(db,cd->getDefFileName().data());
bindIntParameter(i_s_compounddef,":id_file",id_file); bindIntParameter(i_s_compounddef,":id_file",id_file);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment