18 lines
556 B
C#
18 lines
556 B
C#
namespace Common.Logic.Extensions.SQL.Interfaces
|
|
{
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// <see cref="ISQLConnection"/> simply exposes the <see cref="ISQLConnection.CreateCommand(String)"/> method.
|
|
/// </summary>
|
|
public interface ISQLConnection
|
|
{
|
|
/// <summary>
|
|
/// Creates a command with given command text.
|
|
/// </summary>
|
|
/// <param name="commandText"><see cref="System.String"/> - SQL query String.</param>
|
|
/// <returns></returns>
|
|
ISQLCommand CreateCommand(String commandText);
|
|
}
|
|
}
|