Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [stellation-res] Code auditing

On Fri, 2002-08-30 at 09:08, Mark C. Chu-Carroll wrote:
We've checked in some very substantial changes this week. I'd greatly
appreciate it if folks out there with any free time would do a bit of
code auditing for us.

In particular, we would appreciate a focus on the following areas which
have changed significantly:
- The access point and database code in org.eclipse.stellation.repos and
  org.eclipse.stellation.repos.database.
- The workspace code in org.eclipse.stellation.workspace
- The agent code in org.eclipse.stellation.repos.artifacts
Hi,

I finally started writing the code to support Firebird and found the following at AbstractDBAccessPoint.java
public AbstractDBAccessPoint(StringList location)  
    throws IOException {
        _dbkind = location.remove(0);              
        if (_dbkind.equals("postgres")) {
            _db = new PostgresDatabase(this, location);
        }
    }
           
Creation of DB2 and Oracle location is missing.

Rodolfo
-- 

 MAXPROGRAMS
 IBM Business Partner
 Microsoft MSDN Business Connection Partner
 rmraya@xxxxxxxxxxxxxxx
 http://www.maxprograms.com

Back to the top