mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-13 13:10:53 +00:00
* Add basic SQL queries template * Add namedParametersEnabled option * Move model related SQLs into Model folder * Update README template * Refresh samples
27 lines
595 B
SQL
27 lines
595 B
SQL
--
|
|
-- OpenAPI Petstore.
|
|
-- Prepared SQL queries for 'AdditionalPropertiesBoolean' definition.
|
|
--
|
|
|
|
|
|
--
|
|
-- SELECT template for table `AdditionalPropertiesBoolean`
|
|
--
|
|
SELECT `name` FROM `AdditionalPropertiesBoolean` WHERE 1;
|
|
|
|
--
|
|
-- INSERT template for table `AdditionalPropertiesBoolean`
|
|
--
|
|
INSERT INTO `AdditionalPropertiesBoolean`(`name`) VALUES (?);
|
|
|
|
--
|
|
-- UPDATE template for table `AdditionalPropertiesBoolean`
|
|
--
|
|
UPDATE `AdditionalPropertiesBoolean` SET `name` = ? WHERE 1;
|
|
|
|
--
|
|
-- DELETE template for table `AdditionalPropertiesBoolean`
|
|
--
|
|
DELETE FROM `AdditionalPropertiesBoolean` WHERE 0;
|
|
|