DotNetDupe 4.0.6
C++17/20 Implementation of the .NET Base Class Library (BCL)
Loading...
Searching...
No Matches
SqlParameter.h
Go to the documentation of this file.
1#pragma once
3
4namespace DotNetDupe {
5 namespace System {
6 namespace Data {
7 namespace SqlClient {
8
15 public:
17 SqlParameter() = default;
18
23 : DbParameter(sName, sValue) {}
24
26 ~SqlParameter() override = default;
27 };
28
29 }
30 }
31 }
32}
Represents a parameter to a DbCommand and optionally its mapping to DataSet columns.
Definition DbParameter.h:18
DbParameter()=default
Initializes a new default instance of DbParameter.
SqlParameter(const DotNetDupe::System::String &sName, const DotNetDupe::System::String &sValue)
Initializes a new instance with a parameter name and string value.
~SqlParameter() override=default
Virtual destructor for polymorphic cleanup.
SqlParameter()=default
Initializes a new default instance of SqlParameter.
Represents text as a sequence of UTF-8 code units with culture-invariant operations.
Definition String.h:74