23 lines
518 B
C#
23 lines
518 B
C#
namespace xIds.Constants
|
|
{
|
|
/// <summary>
|
|
/// /// Represent Supported DBMS for Managing Data ...
|
|
/// </summary>
|
|
public enum XDbProviders
|
|
{
|
|
None,
|
|
MySQL,
|
|
SQLite,
|
|
SQLServer,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Represent Supported DBMS for Managing Data ...
|
|
/// </summary>
|
|
public partial struct ProviderType
|
|
{
|
|
public const string MySQL = "MYSQL";
|
|
public const string SQLite = "SQLITE";
|
|
public const string SQLServer = "SQLSERVER";
|
|
}
|
|
} |