我不是一个非常有经验的开发人员。我遇到了以下错误,并且不知道如何解决它。
\n\n已采取的步骤:
\n\nGoogleService-Info.plist到 runner/runner这是有错误的输出部分:
\n\nError output from Xcode build:\n \xe2\x86\xb3\n[ +1 ms] ** BUILD FAILED **\n\n\n The following build commands failed:\n CompileC\n\n/Users/shannongalway/Library/Developer/Xcode/DerivedData/Runner-gujmunagyejhsgfssbevzrusvdkc/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/firebase_core\n .build/Objects-normal/x86_64/FirebaseCorePlugin.o\n /Users/shannongalway/development/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.4.0+9/ios/Classes/FirebaseCorePlugin.m normal x86_64 objective-c\n com.apple.compilers.llvm.clang.1_0.compiler\n (1 failure)\n\n[ +1 ms] Xcode's output:\n \xe2\x86\xb3\n[ +74 ms] Build settings from command line:\n ARCHS = x86_64\n BUILD_DIR = /Users/shannongalway/IdeaProjects/carlinehound/build/ios\n COMPILER_INDEX_STORE_ENABLE = …Run Code Online (Sandbox Code Playgroud) 我尝试了以下方法,但只收到了整个数据库的信息。
listTables() async {
sqflite.Database dbClient = await this.db;
List<Map<String, dynamic>> tables = await dbClient
.query('sqlite_master');
print(tables);
}
Run Code Online (Sandbox Code Playgroud)
我正在寻找数据库中存在的表名的列表。