diff options
author | Kargatum <dowlandtop@yandex.com> | 2022-02-05 06:37:11 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-05 00:37:11 +0100 |
commit | de13bf426e162ee10cbd5470cec74122d1d4afa0 (patch) | |
tree | 407c1051b09fea21f946c4ad3b3e4727fca5c400 /doc | |
parent | d6ead1d1e019bd7afd8230b305ae4dd98babd353 (diff) |
feat(Core/DBLayer): replace `char const*` to `std::string_view` (#10211)
* feat(Core/DBLayer): replace `char const*` to `std::string_view`
* CString
* 1
* chore(Core/Misc): code cleanup
* cl
* db fix
* fmt style sql
* to fmt
* py
* del old
* 1
* 2
* 3
* 1
* 1
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changelog/pendings/changes_1643570355041139200.md | 118 |
1 files changed, 118 insertions, 0 deletions
diff --git a/doc/changelog/pendings/changes_1643570355041139200.md b/doc/changelog/pendings/changes_1643570355041139200.md new file mode 100644 index 0000000000..1e2f018488 --- /dev/null +++ b/doc/changelog/pendings/changes_1643570355041139200.md @@ -0,0 +1,118 @@ +## How to upgrade +- `PrepareStatment` + +```diff +- setNull(...) ++ SetData(...) +``` +```diff +- setBool(...) ++ SetData(...) +``` +```diff +- setUInt8(...) ++ SetData(...) +``` +```diff +- setInt8(...) ++ SetData(...) +``` +```diff +- setUInt16(...) ++ SetData(...) +``` +```diff +- setInt16(...) ++ SetData(...) +``` +```diff +- setUInt32(...) ++ SetData(...) +``` +```diff +- setUInt64(...) ++ SetData(...) +``` +```diff +- setInt64(...) ++ SetData(...) +``` +```diff +- setFloat(...) ++ SetData(...) +``` +```diff +- setDouble(...) ++ SetData(...) +``` +```diff +- setString(...) ++ SetData(...) +``` +```diff +- setStringView(...) ++ SetData(...) +``` +```diff +- setBinary(...) ++ SetData(...) +``` + +- `Fields` + +```diff +- GetBool() ++ Get<bool>() +``` +```diff +- GetUInt8() ++ Get<uint8>() +``` +```diff +- GetInt8() ++ Get<int8>() +``` +```diff +- GetUInt16() ++ Get<uint16>() +``` +```diff +- GetInt16() ++ Get<int16>() +``` +```diff +- GetUInt32() ++ Get<uint32>() +``` +```diff +- GetInt32() ++ Get<int32>() +``` +```diff +- GetUInt64() ++ Get<uint64>() +``` +```diff +- GetInt64() ++ Get<int64>() +``` +```diff +- GetFloat() ++ Get<float>() +``` +```diff +- GetDouble() ++ Get<double>() +``` +```diff +- GetString() ++ Get<std::string>() +``` +```diff +- GetStringView() ++ Get<std::string_view>() +``` +```diff +- GetBinary() ++ Get<Binary>() +``` |