1 16 package org.apache.juddi.datastore.jdbc; 17 18 import java.sql.Connection ; 19 import java.util.Vector ; 20 21 import org.apache.juddi.datatype.CategoryBag; 22 import org.apache.juddi.datatype.KeyedReference; 23 import org.apache.juddi.util.Config; 24 import org.apache.juddi.util.jdbc.Transaction; 25 26 29 class TestFindBusinessByCategoryQuery 30 { 31 public static void main(String [] args) 32 throws Exception 33 { 34 Config.setStringProperty("juddi.useConnectionPool","true"); 37 38 Connection conn = null; 39 try { 40 conn = Database.aquireConnection(); 41 test(conn); 42 } 43 finally { 44 if (conn != null) 45 conn.close(); 46 } 47 } 48 49 public static void test(Connection connection) 50 throws Exception 51 { 52 CategoryBag categoryBag = new CategoryBag(); 53 Vector keyedRefVector = new Vector (); 54 keyedRefVector.addElement(new KeyedReference("uuid:C1ACF26D-9672-4404-9D70-39B756E62AB4","ntis-gov:NAICS:1997","51121")); 55 keyedRefVector.addElement(new KeyedReference("uuid:C1ACF26D-9672-4404-9D70-39B756E62AB4","Mining","21")); 56 keyedRefVector.addElement(new KeyedReference("uuid:DB77450D-9FA8-45D4-A7BC-04411D14E384",null,"abcdefg")); 57 keyedRefVector.addElement(new KeyedReference("uuid:DB77450D-9FA8-45D4-A7BC-04411D14E384","1775f0f8-cd47-451d-88da-73ce508836f3","blah, blah, blah")); 58 categoryBag.setKeyedReferenceVector(keyedRefVector); 59 60 Vector keysIn = new Vector (); 61 keysIn.add("740d75b1-3cde-4547-85dd-9578cd3ea1cd"); 62 keysIn.add("c311085b-3277-470d-8ce9-07b81c484e4b"); 63 keysIn.add("6b368a5a-6a62-4f23-a002-f11e22780a91"); 64 keysIn.add("45994713-d3c3-40d6-87b5-6ce51f36001c"); 65 keysIn.add("901b15c5-799c-4387-8337-a1a35fceb791"); 66 keysIn.add("80fdae14-0e5d-4ea6-8eb8-50fde422056d"); 67 keysIn.add("e1996c33-c436-4004-9e3e-14de191bcc6b"); 68 keysIn.add("3ef4772f-e04b-46ed-8065-c5a4e167b5ba"); 69 70 Transaction txn = new Transaction(); 71 72 if (connection != null) 73 { 74 try 75 { 76 txn.begin(connection); 78 79 FindBusinessByCategoryQuery.select(categoryBag,keysIn,null,connection); 80 FindBusinessByCategoryQuery.select((KeyedReference)keyedRefVector.elementAt(0),null,null,connection); 81 82 txn.commit(); 84 } 85 catch(Exception ex) 86 { 87 try { txn.rollback(); } 88 catch(java.sql.SQLException sqlex) { sqlex.printStackTrace(); } 89 throw ex; 90 } 91 } 92 } 93 } 94 | Popular Tags |