1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
|
* };
* db_generic_query_view( "select a,b,c,d from foo", colnames, xf );
*
*/
void db_generic_query_view(
char const * sql,
char const * const * coln,
string_unary_xform_f * xform )
{
Stmt st;
int i = 0;
int rc = db_prepare( &st, sql );
/**
Achtung: makeheaders apparently can't pull the function
|
|
|
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
|
* };
* db_generic_query_view( "select a,b,c,d from foo", colnames, xf );
*
*/
void db_generic_query_view(
char const * sql,
char const * const * coln,
string_unary_xform_f const * xform )
{
Stmt st;
int i = 0;
int rc = db_prepare( &st, sql );
/**
Achtung: makeheaders apparently can't pull the function
|