Vishnu Shrikar
10/11/2023, 3:22 AMsetCurrentPosition: BEGIN ; DELETE FROM CurrentSetPosition; INSERT INTO CurrentSetPosition(pos) VALUES (:position); END;
I am using the SQLDelight Library and this does not generate the right function. There is no "position" parameter, in fact there is no parameter at all. Why is this happeninghfhbd
10/11/2023, 4:45 AMVishnu Shrikar
10/11/2023, 4:50 AMBEGIN TRANSACTION ; ...
hfhbd
10/11/2023, 8:39 PMsetCurrentPosition {
DELETE FROM CurrentSetPosition; INSERT INTO CurrentSetPosition(pos) VALUES (:position);
}
Vishnu Shrikar
10/12/2023, 2:27 AM