miniSql

创建
zgc123@gmail.com authored at 11/19/2023 1:40:15 AM
470.00 B
RunExportSqlCe40Command.cs
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");
        }
    }
}