fix extraction of values from SQLite queries

This commit is contained in:
2025-06-05 19:57:59 -06:00
parent a3951c9d66
commit 5bb563d694

View File

@@ -145,7 +145,7 @@ export class CapacitorPlatformService implements PlatformService {
); );
result = { result = {
columns: [], // SQLite plugin doesn't provide column names columns: [], // SQLite plugin doesn't provide column names
values: queryResult.values || [], values: (queryResult.values || []).map((row) => Object.values(row)),
}; };
break; break;
} }