Recent content by Edwin Godefrooij

  1. E

    Case sensitive column-name problem

    Also the beautifier does not work that well with those columnnames: select t.id , t.description , t."Memo" --> one character to the right from test t;
  2. E

    Case sensitive column-name problem

    If you create a table like: -- Create table create table TEST ( "Id" NUMBER, "Omschrijving" VARCHAR2(20) ) and after that you use the assistent for filling in the columnnames (pulldown-list when you type t.), the following query is constructed: select t.id from test t After...
  3. E

    Templates - Path

    I nice feature would be if you can define a "Template-Path" (the same as a java classpath). Eg: "P:\development\templates;Q:\project\abc\templates;C:\my documents\my templates" What you can do is have default Templates on one place and extra templates (with specific project changes) in an other...
  4. E

    PL/SQL Beautifier and CDM

    Perhaps it is a good idea to follow CDM of Oracle for the beautifier?
Back
Top