* 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
1.2 KiB
1.2 KiB
How to upgrade
PrepareStatment
- setNull(...)
+ SetData(...)
- setBool(...)
+ SetData(...)
- setUInt8(...)
+ SetData(...)
- setInt8(...)
+ SetData(...)
- setUInt16(...)
+ SetData(...)
- setInt16(...)
+ SetData(...)
- setUInt32(...)
+ SetData(...)
- setUInt64(...)
+ SetData(...)
- setInt64(...)
+ SetData(...)
- setFloat(...)
+ SetData(...)
- setDouble(...)
+ SetData(...)
- setString(...)
+ SetData(...)
- setStringView(...)
+ SetData(...)
- setBinary(...)
+ SetData(...)
Fields
- GetBool()
+ Get<bool>()
- GetUInt8()
+ Get<uint8>()
- GetInt8()
+ Get<int8>()
- GetUInt16()
+ Get<uint16>()
- GetInt16()
+ Get<int16>()
- GetUInt32()
+ Get<uint32>()
- GetInt32()
+ Get<int32>()
- GetUInt64()
+ Get<uint64>()
- GetInt64()
+ Get<int64>()
- GetFloat()
+ Get<float>()
- GetDouble()
+ Get<double>()
- GetString()
+ Get<std::string>()
- GetStringView()
+ Get<std::string_view>()
- GetBinary()
+ Get<Binary>()