📄 dropschemanode.java
字号:
/* Derby - Class org.apache.derby.impl.sql.compile.DropSchemaNode Copyright 1998, 2004 The Apache Software Foundation or its licensors, as applicable. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */package org.apache.derby.impl.sql.compile;import org.apache.derby.iapi.sql.conn.LanguageConnectionContext;import org.apache.derby.iapi.sql.execute.ConstantAction;import org.apache.derby.iapi.error.StandardException;import org.apache.derby.iapi.services.sanity.SanityManager;import org.apache.derby.iapi.reference.SQLState;/** * A DropSchemaNode is the root of a QueryTree that represents * a DROP SCHEMA statement. * * @author jamie */public class DropSchemaNode extends DropStatementNode{ private int dropBehavior; private String schemaName; /** * Initializer for a DropSchemaNode * * @param schemaName The name of the object being dropped * @param dropBehavior Drop behavior (RESTRICT | CASCADE) * */ public void init(Object schemaName, Object dropBehavior) throws StandardException { initAndCheck(null); this.schemaName = (String) schemaName; this.dropBehavior = ((Integer) dropBehavior).intValue(); } public QueryTreeNode bind() throws StandardException { LanguageConnectionContext lcc = getLanguageConnectionContext(); /* ** Users are not permitted to drop ** the SYS or APP schemas. */ if (getDataDictionary().isSystemSchemaName(schemaName)) { throw(StandardException.newException( SQLState.LANG_CANNOT_DROP_SYSTEM_SCHEMAS, this.schemaName)); } return this; } /** * Convert this object to a String. See comments in QueryTreeNode.java * for how this should be done for tree printing. * * @return This object as a String */ public String toString() { if (SanityManager.DEBUG) { return super.toString() + "dropBehavior: " + "\n" + dropBehavior + "\n"; } else { return ""; } } public String statementToString() { return "DROP SCHEMA"; } // inherit generate() method from DDLStatementNode /** * Create the Constant information that will drive the guts of Execution. * * @exception StandardException Thrown on failure */ public ConstantAction makeConstantAction() throws StandardException { return getGenericConstantActionFactory().getDropSchemaConstantAction(schemaName); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -