another SQLDelight question: do I have to manually...
# squarelibraries
a
another SQLDelight question: do I have to manually define the basic selectAll/insert/selectBy queries? I’d like it if SQLDelight would automatically generate these queries:
Copy code
selectAll:
SELECT *
FROM hockeyPlayer;

insert:
INSERT INTO hockeyPlayer(player_number, full_name)
VALUES (?, ?);

insertFullPlayerObject:
INSERT INTO hockeyPlayer(player_number, full_name)
VALUES ?;
Is this a reasonable request, or is there something that makes it complicated to generate these functions?
a
you can already do this by invoking generate code menu inside create table statement https://github.com/cashapp/sqldelight/pull/2352