Current Behavior
error: SQLiteCloudError: another row available
Expected Behavior
Expected to execute returning delete values
Steps to Reproduce the Problem
import { Database } from '@sqlitecloud/drivers';
const db = new Database('sqlitecloud://...');
await db.sql('DROP TABLE IF EXISTS users_repro;');
await db.sql('CREATE TABLE users_repro (id integer primary key, name text not null);');
await db.sql('INSERT INTO users_repro(id, name) VALUES (1, "First");');
await db.sql('DELETE FROM users_repro RETURNING *;');
db.close();
Environment
- Version: 1.0.880
- Platform: Linux
- Node.js Version: v24.15.0
Current Behavior
error: SQLiteCloudError: another row availableExpected Behavior
Expected to execute returning delete values
Steps to Reproduce the Problem
Environment