mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2025-11-29 17:38:24 +08:00
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
This commit is contained in:
118
doc/changelog/pendings/changes_1643570355041139200.md
Normal file
118
doc/changelog/pendings/changes_1643570355041139200.md
Normal file
@@ -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>()
|
||||
```
|
||||
Reference in New Issue
Block a user