DdlUtils does not yet provide a mechanism for specifying the catalog/schema to 
work in
--------------------------------------------------------------------------------------

         Key: DDLUTILS-65
         URL: http://issues.apache.org/jira/browse/DDLUTILS-65
     Project: DdlUtils
        Type: Bug
 Environment: Oracle
    Reporter: Tim Dudgeon
 Assigned to: Thomas Dudziak 


On 1/31/06, Tim Dudgeon <[EMAIL PROTECTED]> wrote:

<snip>

>>     public void run() throws Exception {
>>
>>         OracleDataSource ods = new OracleDataSource();
>>
>>         ods.setURL("jdbc:oracle:thin:@localhost:1521:orcl");
>>         ods.setUser("my_user");
>>         ods.setPassword("my_password");
>>
>>         String sql = "CREATE TABLE MY_TABLE( " +
>>                 "prop_name VARCHAR2(200) NOT NULL PRIMARY KEY, " +
>>                 "prop_value VARCHAR2(200), prop_value_ext LONG RAW NULL)";
>>
>>         Connection conn = ods.getConnection();
>>         Statement stmt = conn.createStatement();
>>         stmt.execute(sql);
>>         stmt.close();
>>         conn.close();
>>
>>         String schema = "MY_SCHEMA";
>>
>>         Platform platform = PlatformFactory.createNewPlatformInstance(ods);
>>         Database db = platform.readModelFromDatabase("test", null,
>> schema, null);
>>
>>         dumpDb(db);
>>
>>         platform.alterTables(db, false, false, false);


This is the problem here: DdlUtils does not yet provide a mechanism
for specifying the catalog/schema to work in (. Could you create an
improvement in JIRA for this ?

Tom



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to