Browse Source

fix extraction of values from SQLite queries

pull/137/head
Trent Larson 2 days ago
parent
commit
5bb563d694
  1. 2
      src/services/platforms/CapacitorPlatformService.ts

2
src/services/platforms/CapacitorPlatformService.ts

@ -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;
} }

Loading…
Cancel
Save