BotSharp/src/Plugins/BotSharp.Plugin.SqlDriver/Settings/SqlDriverSetting.cs

17 lines
801 B
C#
Raw Normal View History

2024-11-20 08:24:26 +00:00
namespace BotSharp.Plugin.SqlDriver.Settings;
2024-01-13 21:17:40 +00:00
2024-01-18 11:30:28 +00:00
public class SqlDriverSetting
2024-01-13 21:17:40 +00:00
{
2024-10-31 16:35:01 +00:00
public string DatabaseType { get; set; } = "mysql";
2024-09-10 22:12:17 +00:00
public string MySqlConnectionString { get; set; } = null!;
public string MySqlExecutionConnectionString { get; set; } = null!;
2024-10-03 19:09:14 +00:00
public string MySqlTempConnectionString { get; set; } = null!;
2024-10-14 22:25:55 +00:00
public string MySqlMetaConnectionString { get; set; } = null!;
2024-09-10 22:12:17 +00:00
public string SqlServerConnectionString { get; set; } = null!;
2024-09-17 11:32:11 +00:00
public string SqlServerExecutionConnectionString { get; set; } = null!;
2024-09-10 22:12:17 +00:00
public string SqlLiteConnectionString { get; set; } = null!;
2024-10-31 16:35:01 +00:00
public string RedshiftConnectionString { get; set; } = null!;
2024-09-17 11:32:11 +00:00
public bool ExecuteSqlSelectAutonomous { get; set; } = false;
2024-10-12 01:18:45 +00:00
public bool FormattingResult { get; set; } = true;
2024-01-13 21:17:40 +00:00
}