Creates an abstracted INSERT query for inserting row(s) into the specified table filling the passed columns
Insert insertMountain = table("mountain").insert( "name", "location", "height" ); // INSERT INTO "mountain"("name", "location", "height") VALUES (?, ?, ?) Insert insert3MountainsAtOnce = table("mountain") .insert( "name", "height" ) .times(3) ; // INSERT INTO "mountain"("name", "height") VALUES (?, ?), (?, ?), (?, ?)
Use times to create a query for inserting multiple rows at once.
See Implementation
Creates an abstracted INSERT query for inserting row(s) into the specified table filling the passed columns