• PowerDesigner生成SQL的冒号设置


    环境

    Win7 64bit
    PowerDesigner 16 32bit

    生成SQL脚本

    Database>Generate Database
    快捷键 Ctrl+G

    生成窗口

    生成脚本

    drop table if exists `t_log`;
    
    /*==============================================================*/
    /* Table: `t_log`                                               */
    /*==============================================================*/
    create table `t_log`
    (
       `id`                 int not null,
       `memo`               varchar(500),
       primary key (`id`)
    );
    

    去掉冒号

    生成SQL脚本时,默认对象带有双引号
    步骤:Database>Script>Sql>Format>CaseSensitivityUsingQuote>选择No
    修改设置不要remove,否则无法修改为带引号

    点击确定将弹窗提示

    PowerDesigner - Confirmation
    Would you like to save the changes made to "MySQL 5.0" in the file (D:Program FilesSybasePowerDesigner 16Resource FilesDBMSmysql50.xdb)?
    

    作者: 燃烧的竹子
    出处: https://www.cnblogs.com/HittheRoad/
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.
  • 相关阅读:
    Java ClassLoader
    Java Hashcode
    Java 装箱 拆箱
    Java 深拷贝,浅拷贝
    Java IO流
    JVM内存模型
    C语言中的__FILE__、__LINE__和#line
    OpenMP和MPI的区别
    visual studio代码备份精减
    MVVM设计模式在WPF中的应用
  • 原文地址:https://www.cnblogs.com/HittheRoad/p/14683183.html
Copyright © 2020-2023  润新知