mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
24 lines
489 B
C#
24 lines
489 B
C#
using System.Data.SqlClient;
|
|
|
|
namespace mRemoteNG.Config.Connections
|
|
{
|
|
public class SqlUpdateQueryBuilder : SqlCommandBuilder
|
|
{
|
|
private string _updateQuery;
|
|
|
|
public SqlUpdateQueryBuilder()
|
|
{
|
|
Initialize();
|
|
}
|
|
|
|
private void Initialize()
|
|
{
|
|
_updateQuery = "SELECT * FROM tblUpdate";
|
|
}
|
|
|
|
public SqlCommand BuildCommand()
|
|
{
|
|
return new SqlCommand(_updateQuery);
|
|
}
|
|
}
|
|
} |