|
What this is
Other links
The source code
/*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License
* Version 1.0 (the "License"). You may not use this file except in
* compliance with the License. A copy of the License is available at
* http://www.sun.com/
*
* The Original Code is NetBeans. The Initial Developer of the Original
* Code is Sun Microsystems, Inc. Portions Copyright 1997-2004 Sun
* Microsystems, Inc. All Rights Reserved.
*/
package org.netbeans.modules.db.explorer.infos;
import java.io.IOException;
import java.sql.*;
import java.util.*;
import org.netbeans.lib.ddl.*;
import org.netbeans.lib.ddl.impl.*;
import org.openide.nodes.Node;
import org.netbeans.modules.db.DatabaseException;
import org.netbeans.modules.db.explorer.DatabaseNodeChildren;
import org.netbeans.modules.db.explorer.infos.*;
import org.netbeans.modules.db.explorer.nodes.*;
import org.netbeans.modules.db.explorer.actions.DatabaseAction;
public class ViewNodeInfo extends DatabaseNodeInfo {
static final long serialVersionUID =8370676447530973161L;
public void initChildren(Vector children) throws DatabaseException {
try {
String view = (String)get(DatabaseNode.VIEW);
// Columns
DriverSpecification drvSpec = getDriverSpecification();
drvSpec.getColumns(view, "%");
ResultSet rs = drvSpec.getResultSet();
if (rs != null) {
DatabaseNodeInfo nfo;
while (rs.next()) {
nfo = DatabaseNodeInfo.createNodeInfo(this, DatabaseNode.VIEWCOLUMN, drvSpec.getRow());
if (nfo != null)
children.add(nfo);
}
rs.close();
}
} catch (Exception e) {
throw new DatabaseException(e.getMessage());
}
}
public void setProperty(String key, Object obj) {
try {
if (key.equals("remarks")) setRemarks((String)obj); //NOI18N
put(key, obj);
} catch (Exception ex) {
ex.printStackTrace();
}
}
public void setRemarks(String rem) throws DatabaseException {
String viewname = (String)get(DatabaseNode.VIEW);
Specification spec = (Specification)getSpecification();
try {
AbstractCommand cmd = spec.createCommandCommentView(viewname, rem);
cmd.setObjectOwner((String)get(DatabaseNodeInfo.SCHEMA));
cmd.execute();
} catch (Exception e) {
throw new DatabaseException(e.getMessage());
}
}
public void delete() throws IOException {
try {
String code = getCode();
String table = (String)get(DatabaseNode.TABLE);
Specification spec = (Specification)getSpecification();
AbstractCommand cmd = spec.createCommandDropView(getName());
cmd.setObjectOwner((String)get(DatabaseNodeInfo.SCHEMA));
cmd.execute();
} catch (Exception e) {
throw new IOException(e.getMessage());
}
}
}
|
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.