From 7d0d0e5f1570f06564e07f5e55b9bef9db517f8b Mon Sep 17 00:00:00 2001 From: gramanas Date: Wed, 26 Sep 2018 12:07:48 +0300 Subject: list can now show attributes (secret, primary) --- src/dbhelper.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/dbhelper.c') diff --git a/src/dbhelper.c b/src/dbhelper.c index d0c2795..b183770 100644 --- a/src/dbhelper.c +++ b/src/dbhelper.c @@ -170,9 +170,13 @@ void dbh_format_query_select_from_joined_like(char *query, const char *selection strcpy(query, tmp); } -void dbh_form_query_select_paths(char *query) { +void dbh_form_query_select_paths_with_attributes(char *query) { char tmp[STR_L] = "SELECT "; strcat(tmp, COL_CONFIG_PATH); + strcat(tmp, ","); + strcat(tmp, COL_CONFIG_SECRET); + strcat(tmp, ","); + strcat(tmp, COL_CONFIG_PRIMARY); strcat(tmp, " FROM "); strcat(tmp, TBL_CONFIG); strcat(tmp, ";"); -- cgit v1.2.3