We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
您好,打扰了!
不知道为什么, 添加数据的时候总是会出现 DB Error: 1 "near ")": syntax error"
DB Error: 1 "near ")": syntax error"
以下是我写的code: [_db jq_createTable:@"predictedValue" dicOrModel:[NSDictionary class]]; [_db jq_insertTable:@"predictedValue" dicOrModel:currentArray];
[_db jq_createTable:@"predictedValue" dicOrModel:[NSDictionary class]];
[_db jq_insertTable:@"predictedValue" dicOrModel:currentArray];
这是debug的时候显示的currentArray里的东西
谢谢帮忙!
The text was updated successfully, but these errors were encountered:
请阅读文档或者demo, [_db jq_createTable:@"predictedValue" dicOrModel:[NSDictionary class]]; 你的这条语句只是给出了表的名称, 但是表的字段没有给出, 如上, 你用的是字典建表, 那么一个简单的例子应该是这样的 [_db jq_createTable:@"predictedValue" dicOrModel:@{@"name":@"TEXT", @"sex":@"INTEGER"}];
Sorry, something went wrong.
No branches or pull requests
您好,打扰了!
不知道为什么, 添加数据的时候总是会出现
DB Error: 1 "near ")": syntax error"
以下是我写的code:
[_db jq_createTable:@"predictedValue" dicOrModel:[NSDictionary class]];
[_db jq_insertTable:@"predictedValue" dicOrModel:currentArray];
这是debug的时候显示的currentArray里的东西
谢谢帮忙!
The text was updated successfully, but these errors were encountered: