zoukankan      html  css  js  c++  java
  • 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/
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.
  • 相关阅读:
    c函数调用过程
    查找匹配行及前后5行
    指向类成员函数的指针
    C++箴言:理解typename的两个含义
    不定参数
    定时器
    unix编译
    sed
    大脑皮层的梦工厂
    静态链接库顺序问题
  • 原文地址:https://www.cnblogs.com/HittheRoad/p/14683183.html
Copyright © 2011-2022 走看看