mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-27 10:07:10 +00:00
17 lines
375 B
C#
17 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());
|
|
}
|
|
}
|
|
}
|