flexible indents

Is it possible to have a variable indent in the generated code??? {_indent}object lblLabel: TLabel {_indent}  Top = 0 {_indent}  Left = 10 {_indent}end And that that would result in something like this (with _indent set to 4 spaces):     object lblLabel: TLabel       Top = 0       Left = […]

Read more

Oracle SQL Developer also for MySQL

This post on Download Squad pointed me to trying Oracle SQL Developer to connect to my MySQL database on this website. After unpacking the download, I tried to connect but apparently I needed some extra software to connect to MySQL. This link on the Oracle site shows the following table. It appears that the needed jar files […]

Read more

Switched to FireFox…

 I finally made the switch from Maxthon (for tabbed browsing) to Firefox. I needed a couple of extensions, like the mouse gestures extensions, but I think I got all the functionality I liked in Maxthon embedded in FireFox now.  After installing FireFox, I decided to take a look at ThunderBird, since my current email application, […]

Read more

Tabs in output

By default, when you press the tab-key in the editor, the indent is replaced by spaces. I wanted the generated code to contain tabs instead of spaces, so I have created the following code: An Oracle Stored Function: create or replace function tab_char return varchar2 is begin   return chr(9); end tab_char; In the cgml code […]

Read more

Qnxo is now Qcgu

Quest has recently aquired Qnxo which they will make available for free on ToadWorld.com. They have also renamed the product to from Qnxo (Quality iN, eXcellence Out) to Qcgu (Quest Code Generation Utility). Since the acronym doesn’t sound too good, it will probably be referred to as CodeGen. I have been testing the new version […]

Read more

Cleanup after yourself

When working with your own arrays in Qnxo, you end up with all kinds of views in the schema that you actually don’t want to be left there. For one because they don’t serve any purpose, except for the CGML code generation, and you don’t want any other code to depend on them, because they […]

Read more