数据不进入数据库而不是来自android中的数据库

时间:2015-08-28 18:37:10

标签: android sqlite android-sqlite

这是我写的。这段代码有问题。当我调试代码时,它终止于此文件。所以我需要帮助。 数据没有进入数据库,我无法从数据库中检索数据。不知道数据库,表是否创建。

int main (){
    std::istringstream file(
        "hello\n"
        "world\n"
        "C++ is the best tool"
    );
    StringAndNewline
        wordOrNewline;
    while(file >> wordOrNewline){
        std::cout << wordOrNewline << '\n';
    }
}

如果logcat可以帮助你。看这个

hello
\n
world
\n
C++
is
the
best
tool

1 个答案:

答案 0 :(得分:1)

CREATE TABLEpersondetails

你在“桌子”之后错过了一个空格

更改行

String CREATE_DETAILS_TABLLE="CREATE TABLE" + 

添加空格,如下所示

String CREATE_DETAILS_TABLLE="CREATE TABLE " +