Skip to content
Closed
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
12 changes: 12 additions & 0 deletions docs/differences_to_sqlpp11.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,18 @@ If seems a bit dry, follow the links to examples.
| `NOT IN` | `x.not_in(sqlpp::value_list(vector{}))` interpreted as `true` | *no magic*: `x NOT IN ()` |
| `operator+=` etc | `x += y` was translated into `x = x + y` | *no magic* |
| aggregate functions | auto-named in `select` but not otherwise | require explicit names, e.g. max(id).as(sqlpp::alias::max_) |
| | | |
| **ddl2cpp** | | |
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm. Changes beyond the .66 release are documented in documented in docs/change_log.md

Maybe that should be organized better?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I see. Maybe I should just drop the PR then?

| auto id columns | -auto-id | --assume-auto-id |
| column naming | -identity-naming | --naming-style {camel-case,identity} |
| ddl source file | positional parameter | --path-to-ddl |
| modules support | N/A | --path-to-module, --module-name, --use-import-sqlpp23, --use-import-std |
| definitions namespace | positional parameter | --namespace |
| self-test | -test | --self-test |
| single or multiple headers | -split-tables | --path-to-header or --path-to-header-directory |
| table creation helper | N/A | --generate-table-creation-helper |
| timestamp warning | -no-timestamp-warning | --suppress-timestamp-warning |
| | | |
| **Misc** | | |
| prepared statement parameters | `.params` | `.parameters` |
| `eval(db, expr)` | Convenience wrapper around `db(select(expr.as(a))).front().a` | *dropped* (could lead to dangling references, see `TEXT` and `BLOB`) |
Expand Down
2 changes: 1 addition & 1 deletion docs/todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ See https://github.com/rbock/sqlpp11/issues/553

## Async support

Obtain results in an asynchronous fashion, see #35, for instance.
Obtain results in an asynchronous fashion, see https://github.com/rbock/sqlpp11/issues/35, for instance.

[**< Index**](/docs/README.md)