We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64804c9 commit d09ce04Copy full SHA for d09ce04
package/cpp/sqliteExecuteBatch.cpp
@@ -44,7 +44,7 @@ SQLiteOperationResult sqliteExecuteBatch(const std::string& dbName, const std::v
44
for (int i = 0; i < commandCount; i++) {
45
const auto command = commands.at(i);
46
47
- // We do not provide a datas tructure to receive query data because we don't need/want to handle this results in a batch execution
+ // We do not provide a data structure to receive query data because we don't need/want to handle these results in a batch execution
48
auto results = SQLiteQueryResults();
49
auto metadata = std::optional<SQLiteQueryTableMetadata>(std::nullopt);
50
try {
0 commit comments