miniSql

6136600 » zgc123@gmail.com
11/19/2023 创建
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");
        }
    }
}