1 11 12 package com.nilostep.xlsql.sql.mckoi; 13 14 import com.nilostep.xlsql.sql.xlSqlWriter; 15 16 import java.sql.*; 17 import java.text.*; 18 import java.util.*; 19 20 25 public class xlMcKoiWriter extends xlSqlWriter { 26 28 35 public String wCreateSchema(String s) { 36 return "CREATE SCHEMA " + s + ";"; 37 } 38 39 47 public String wDropTable(String s, 48 String t) { 49 return null; 53 } 55 56 protected String getTableName(String s, 57 String t) { 58 return "\"" + s + "." + t + "\""; 59 } 60 } | Popular Tags |