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

15 lines
666 B
C#
Raw Normal View History

2024-01-13 21:17:40 +00:00
namespace BotSharp.Plugin.SqlHero.Settings;
2024-01-18 11:30:28 +00:00
public class SqlDriverSetting
2024-01-13 21:17:40 +00:00
{
2024-09-17 11:32:11 +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-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-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
}