miniSql

6136600 » zgc123@gmail.com
11/19/2023 创建
using MiniSqlQuery.ExternalTools.Plugin.Properties;

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

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