miniSql

创建
zgc123@gmail.com authored at 11/19/2023 1:40:15 AM
464.00 B
RunExportSqlCeCommand.cs
using MiniSqlQuery.ExternalTools.Plugin.Properties;

namespace MiniSqlQuery.ExternalTools.Plugin.Commands
{
    public class RunExportSqlCeCommand : RunExportSqlCeCommandBase
    {
        public RunExportSqlCeCommand()
            : base("Run 'Export SQL CE 3.5' Tool")
        {
            SmallImage = Resources.data_out.ToBitmap();
        }

        public override void Execute()
        {
            RunExportSqlCe("ExportSqlCE.exe");
        }
    }
}