我有一个很长的sqlite查询:
const char *sql_query = "SELECT statuses.word_id FROM lang1_words, statuses WHERE statuses.word_id = lang1_words.word_id ORDER BY lang1_words.word ASC";
我如何把它分成几行,让它更容易阅读?
如果我这样做:
const char *sql_query = "SELECT word_id
FROM table1, table2
WHERE table2.word_id = table1.word_id
ORDER BY table1.word ASC";
我得到一个错误。
是否有一种方法可以在多行中编写查询?
GCC将c++多行原始字符串文字作为C扩展添加
c++ 11有原始字符串字面量,如在https://stackoverflow.com/a/44337236/895245中提到的
然而,GCC也将它们添加为C扩展,你只需要使用-std=gnu99而不是-std=c99。例如:
c
#include <assert.h>
#include <string.h>
int main(void) {
assert(strcmp(R"(
a
b
)", "\na\nb\n") == 0);
}
编译并运行:
gcc -o main -pedantic -std=gnu99 -Wall -Wextra main.c
./main
这可以用于例如插入多行内联汇编到C代码:如何在GCC c++中编写多行内联汇编代码?
现在您只需要放轻松,等待C20XY对其进行标准化。
c++多行字符串字面值
在Ubuntu 16.04, GCC 6.4.0, binutils 2.26.1上测试。
还有一个解决方案,把你的。m文件改为。mm,这样它就变成了objective - c++,并使用c++原始文字,像这样:
const char *sql_query = R"(SELECT word_id
FROM table1, table2
WHERE table2.word_id = table1.word_id
ORDER BY table1.word ASC)";
原始文字忽略终止序列之前的所有内容,在默认情况下,终止序列是圆括号-引号。
如果圆括号-引号序列必须出现在字符串中的某个地方,您也可以轻松地指定一个自定义分隔符,如下所示:
const char *sql_query = R"T3RM!N8(
SELECT word_id
FROM table1, table2
WHERE table2.word_id = table1.word_id
ORDER BY table1.word ASC
)T3RM!N8";