1 19 20 package org.netbeans.modules.dbschema.jdbcimpl; 21 22 import java.sql.*; 23 import java.util.LinkedList ; 24 25 public class MetaDataUtil { 26 27 public static boolean areViewsSupported(String productName) { 28 LinkedList list = new LinkedList (); 29 30 list.add("PointBase"); list.add("MySQL"); list.add("HypersonicSQL"); 35 if (list.contains(productName.trim())) 36 return false; 37 else 38 return true; 39 } 40 } 41 | Popular Tags |