import java.sql.*; public class PstmtTest1{ public static void main(String args[]){ if(args.length!=1){ System.out.print("検索文字列を指定してください。"); System.exit(1); } String aName = args[0]; try{ Class.forName("com.mysql.jdbc.Driver"); String strConn="jdbc:mysql://localhost/pstmt_test" + "?user=Mulder&password=TrustNo1" + "&useUnicode=true&characterEncoding=MS932"; Connection conn =DriverManager.getConnec