banq 設計模式中的facade模式的例子是不是不太對啊

hub發表於2007-10-31


原來的程式碼片斷是:
public class DBCompare {

  String sql = "SELECT * FROM <table> WHERE <column name> = ?";  

  try {
     Mysql msql=new mysql(sql);
     prep.setString( 1, "<column value>" );
     rset = prep.executeQuery();
     if( rset.next() ) {
        System.out.println( rset.getString( "<column name" ) );
     }
  } catch( SException e ) {
     e.printStackTrace();
  } finally {
     mysql.close();
     mysql=null;
  }
}

是不是應該把 prep換成 mysql 啊
雖然是細枝末節不值一提 我還是想問問
謝謝

[該貼被hub於2007-10-31 09:56修改過]

相關文章