Update of /cvsroot/squirrel-sql/sql12/plugins/netezza/src/net/sourceforge/squirrel_sql/plugins/netezza/prefs
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv30775/plugins/netezza/src/net/sourceforge/squirrel_sql/plugins/netezza/prefs
Added Files:
NetezzaPreferenceBean.java
Log Message:
New plugin for Netezza NPS 4.6 rdbms.
--- NEW FILE: NetezzaPreferenceBean.java ---
/*
* Copyright (C) 2009 Rob Manning
* man...@us...
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package net.sourceforge.squirrel_sql.plugins.netezza.prefs;
import java.io.Serializable;
import net.sourceforge.squirrel_sql.fw.preferences.BaseQueryTokenizerPreferenceBean;
public class NetezzaPreferenceBean extends BaseQueryTokenizerPreferenceBean implements Cloneable, Serializable
{
private static final long serialVersionUID = 8799498411960415923L;
public NetezzaPreferenceBean() {
super();
statementSeparator = ";";
procedureSeparator = "ENDPROC";
lineComment = "--";
removeMultiLineComments = false;
installCustomQueryTokenizer = true;
}
}
|