1 29 30 package com.caucho.db.sql; 31 32 import com.caucho.db.store.Transaction; 33 import com.caucho.log.Log; 34 35 import java.sql.SQLException ; 36 import java.util.logging.Logger ; 37 38 public class TempQuery extends Query { 39 private static final Logger log = Log.open(Query.class); 40 41 protected TempQuery(FromItem []fromItems) 42 { 43 super(null, "temp", fromItems); 44 } 45 46 49 public void execute(QueryContext queryCtx, Transaction xa) 50 throws SQLException  51 { 52 throw new UnsupportedOperationException (); 53 } 54 } 55 | Popular Tags |