mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
18 lines
375 B
C#
18 lines
375 B
C#
using System;
|
|
|
|
namespace Marr.Data.QGen.Dialects
|
|
{
|
|
public class FirebirdDialect : Dialect
|
|
{
|
|
public override string CreateToken(string token)
|
|
{
|
|
if (string.IsNullOrEmpty(token))
|
|
{
|
|
return string.Empty;
|
|
}
|
|
|
|
return token.Replace('[', new Char()).Replace(']', new Char());
|
|
}
|
|
}
|
|
}
|