diff options
Diffstat (limited to 'src/dbhelper.c')
-rw-r--r-- | src/dbhelper.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/dbhelper.c b/src/dbhelper.c index b6421db..b27e81a 100644 --- a/src/dbhelper.c +++ b/src/dbhelper.c @@ -169,3 +169,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) { + char tmp[STR_L] = "SELECT "; + strcat(tmp, COL_CONFIG_PATH); + strcat(tmp, " FROM "); + strcat(tmp, TBL_CONFIG); + strcat(tmp, ";"); + + strcpy(query, tmp); +} |