something useful for somebody else... and after that you can do your DB --> 
language mappings





SELECT my_data_type

FROM (

   SELECT DISTINCT data_type, data_length, data_precision, 
data_scale, data_type || DECODE(data_type, 'NUMBER', '(' || 
data_precision || ',' || data_scale || ')' , '(' || data_length || 
')') AS my_data_type 

   FROM user_tab_columns

   ORDER BY data_type, data_length, data_precision, data_scale

)


_________________________________________________________
Reply to the post : http://galaxy.andromda.org/forum/viewtopic.php?p=702#702
Posting to http://forum.andromda.org/ is preferred over posting to the mailing 
list!


-------------------------------------------------------
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
_______________________________________________
Andromda-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/andromda-user

Reply via email to