comparison Framework/Common/DatabaseManager.h @ 434:23c7af6f671a pg-transactions

DeleteResource does not need the RemainingAncestor table anymore
author Alain Mazy <am@osimis.io>
date Wed, 13 Dec 2023 16:52:06 +0100
parents 3d6886f3e5b3
children 326f8304daa1
comparison
equal deleted inserted replaced
433:5964ce6385a5 434:23c7af6f671a
185 185
186 int64_t ReadInteger64(size_t field) const; 186 int64_t ReadInteger64(size_t field) const;
187 187
188 std::string ReadString(size_t field) const; 188 std::string ReadString(size_t field) const;
189 189
190 bool IsNull(size_t field) const;
191
190 void PrintResult(std::ostream& stream) 192 void PrintResult(std::ostream& stream)
191 { 193 {
192 IResult::Print(stream, GetResult()); 194 IResult::Print(stream, GetResult());
193 } 195 }
194 }; 196 };