diff options
author | David Robillard <d@drobilla.net> | 2006-07-26 18:53:15 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-07-26 18:53:15 +0000 |
commit | f988795439be205e96f71563b8de37b3eb399c55 (patch) | |
tree | a765305b545a7e93c7c49c0ee4a00b278b0d4d79 /slv2 | |
parent | a15486a0151251ddc7805604a08580fa8279efaa (diff) | |
download | lilv-f988795439be205e96f71563b8de37b3eb399c55.tar.gz lilv-f988795439be205e96f71563b8de37b3eb399c55.tar.bz2 lilv-f988795439be205e96f71563b8de37b3eb399c55.zip |
Removed vstrjoin
git-svn-id: http://svn.drobilla.net/lad/libslv2@105 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2')
-rw-r--r-- | slv2/query.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/slv2/query.h b/slv2/query.h index 57d1b22..9bba619 100644 --- a/slv2/query.h +++ b/slv2/query.h @@ -76,16 +76,15 @@ slv2_query_lang_filter(const char* variable); /** Run a SPARQL query on a plugin's data file. * - * String arguments will be concatenated, allowing for variable substitution - * etc. (without having to define a token syntax and search the string for - * tokens, which would be slow). + * Header from slv2query_header will be prepended to passed query string (so + * the default prefixes will be already defined, you don't need to add them + * yourself). * - * Header from slv2query_header will be prepended to passed query string. * rasqal_init() must be called by the caller before calling this function. */ rasqal_query_results* slv2_plugin_run_query(const SLV2Plugin* p, - const char* query_string, ...); + const char* query_string); SLV2Property slv2_query_get_results(rasqal_query_results* results); |