1 54 55 import java.sql.*; 56 import java.io.*; 57 import java.util.*; 58 59 import org.jdom.*; 60 import org.jdom.output.*; 61 import org.jdom.contrib.input.ResultSetBuilder; 62 63 68 public class sxql { 69 70 73 public static Connection getConnection(String driver, String jdbcURL, 74 String user, String pass) 75 throws Exception { 76 Class.forName(driver); 77 return DriverManager.getConnection(jdbcURL, user, pass); 78 } 79 80 85 public static String query(Connection con, String query, 86 String root, String row, 87 String ns, int maxRows, 88 Vector attributes, Vector elements) 89 throws Exception { 90 Statement stmt = con.createStatement(); 92 ResultSet rs = stmt.executeQuery(query); 93 94 ResultSetBuilder builder = new ResultSetBuilder(rs); 96 97 99 if (root != null) { 100 builder.setRootName(root); 101 } 102 103 if (row != null) { 104 builder.setRowName(row); 105 } 106 107 if (ns != null) { 108 String namespace = null; 109 String url = null; 110 int sep = ns.indexOf("/"); 111 112 if (sep > 0) { 113 namespace = ns.substring(0, sep); 114 url = ns.substring(sep+1); 115 builder.setNamespace(Namespace.getNamespace(namespace, url)); 116 } 117 } 118 119 if (maxRows > 0) { 120 builder.setMaxRows(maxRows); 121 } 122 123 for (int i=0; i < attributes.size(); i++) { 124 String colName = (String ) attributes.get(i); 125 String attrName = null; 126 127 if (colName.indexOf("/") >= 0) { 128 String col = colName; 129 int sep = col.indexOf("/"); 130 colName = col.substring(0, sep); 131 attrName = col.substring(sep+1); 132 } 133 134 try { int colNum = Integer.parseInt(colName); 136 137 if (attrName == null) { 138 builder.setAsAttribute(colNum); } 140 else { 141 builder.setAsAttribute(colNum, attrName); 142 } 143 } 144 catch (NumberFormatException e) { 145 if (attrName == null) { 147 builder.setAsAttribute(colName); } 149 else { 150 builder.setAsAttribute(colName, attrName); 151 } 152 } 153 } 154 155 for (int i=0; i < elements.size(); i++) { 157 String colName = (String ) elements.get(i); 158 String elemName = null; 159 160 if (colName.indexOf("/") >= 0) { 161 String col = colName; 162 int sep = col.indexOf("/"); 163 colName = col.substring(0, sep); 164 elemName = col.substring(sep+1); 165 } 166 167 try { int colNum = Integer.parseInt(colName); 169 170 if (elemName != null) { builder.setAsElement(colNum, elemName); 172 } 173 } 174 catch (NumberFormatException e) { 175 if (elemName != null) { builder.setAsElement(colName, elemName); 178 } 179 } 180 } 181 182 Document doc = builder.build(); 184 185 XMLOutputter outputter = new XMLOutputter(Format.getPrettyFormat()); 187 ByteArrayOutputStream output = new ByteArrayOutputStream(); 188 outputter.output(doc, output); 189 return output.toString(); 190 } 191 192 195 public static void usage() { 196 System.err.println( 197 "usage: sxql [--root=root-element] [--row=row-element]"); 198 System.err.println( 199 " [--namespace=namespace/url] [--maxrows=max-rows]"); 200 System.err.println( 201 " [--attribute=column/attr] [--element=column/element]"); 202 System.err.println( 203 " driver url user pass query"); 204 System.err.println( 205 "where:"); 206 System.err.println( 207 " --root: set root element name (root-element)"); 208 System.err.println( 209 " --row: set row element name (root-element)"); 210 System.err.println( 211 " --namespace: set namespace (namespace, url)"); 212 System.err.println( 213 " --maxrows: set maximum number of rows (max-rows)"); 214 System.err.println( 215 " --attribute: column as attribute (column name/number, attribute-name)"); 216 System.err.println( 217 " --element: rename column (column name/number, element-name)"); 218 System.err.println( 219 " driver: driver class name"); 220 System.err.println( 221 " url: JDBC url"); 222 System.err.println( 223 " user: database user"); 224 System.err.println( 225 " pass: database password"); 226 System.err.println( 227 " query: SQL query"); 228 } 229 230 233 public static void main(String [] args) throws Exception { 234 String root = null; 235 String row = null; 236 String ns = null; 237 int maxRows = 0; 238 Vector attributes = new Vector(); 239 Vector elements = new Vector(); 240 241 int i; 242 243 245 for (i=0; i < args.length; i++) { 246 if (args[i].startsWith("--")) { 247 if (args[i].startsWith("--attribute=")) 248 attributes.add(args[i].substring(12)); 249 else 250 if (args[i].startsWith("--element=")) 251 elements.add(args[i].substring(10)); 252 else 253 if (args[i].startsWith("--root=")) 254 root = args[i].substring(7); 255 else 256 if (args[i].startsWith("--row=")) 257 row = args[i].substring(6); 258 else 259 if (args[i].startsWith("--namespace=")) 260 ns = args[i].substring(12); 261 else 262 if (args[i].startsWith("--maxrows=")) 263 maxRows = Integer.parseInt(args[i].substring(10)); 264 } 265 else { 266 break; 267 } 268 } 269 270 if (args.length - i != 5) { 271 usage(); 272 } 273 else { 274 System.out.println( 275 query(getConnection(args[i+0], args[i+1], args[i+2], args[i+3]), 276 args[i+4], root, row, ns, maxRows, attributes, elements)); 277 } 278 } 279 } 280
| Popular Tags
|