Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/change_log.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
- deprecate result_row_t::as_tuple
- new as_tuple(const result_row_t&)
- new get_sql_name_tuple(const result_row_t&), #72
- sqlpp23-ddl2cpp: command-line option `--path-to-datatype-file` was renamed to `--path-to-custom-types`
- sqlpp23-ddl2cpp: if an error is found in the custom types file, the program exits with error code 30
- sqlpp23-ddl2cpp: base types in the custom types file should use `snake_case`, although the old `CamelCase` is still supported for backwards compatibility

## 0.67

Expand Down
2 changes: 1 addition & 1 deletion docs/ddl2cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ For detailed instructions refer to the documentation of your database.
| --path-to-header PATH_TO_HEADER | No[^3] | | Output pathname of the generated C++ header. | Second command-line argument |
| --path-to-header-directory PATH_TO_HEADER_DIRECTORY | No[^3] | | Output Directory for the generated C++ headers | Second command-line argument + -split-tables. |
| --path-to-module PATH_TO_MODULE | No[^2][^3] | | Output pathname of the generated C++ module. | N/A |
| --path-to-datatype-file PATH_TO_DATATYPE_FILE | No | | Input pathname of a CSV file defining aliases of existing data types. | Same |
| --path-to-custom-types PATH_TO_CUSTOM_TYPES | No | | Input pathname of a CSV file defining aliases of existing data types. | Same |

**Additional options**
| Option | Required | Default | Description | Before v0.67 |
Expand Down
Loading