Advertisement
leeand00

Configuration File

Oct 23rd, 2012
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. <?xml version="1.0" ?>
  2. <duke>
  3. <schema>
  4. <threshold>0.91</threshold>
  5. <maybe-threshold>0.80</maybe-threshold>
  6. <!-- Path where the index will be stored on disk -->
  7. <path>T_incidentz</path>
  8. <property type="id">
  9. <!-- Primary Key -->
  10. <name>Inc_ID</name>
  11. </property>
  12. <property>
  13. <name>Inc_Notes</name>
  14. <comparator>no.priv.garshol.duke.comparators.Levenshtein</comparator>
  15. <low>0.0</low>
  16. <high>0.9</high>
  17. </property>
  18. <property>
  19. <name>Inc_Call_ID</name>
  20. <comparator>no.priv.garshol.duke.comparators.ExactComparator</comparator>
  21. <low>0.0</low>
  22. <high>0.9</high>
  23. </property>
  24. </schema>
  25. <jdbc>
  26. <param name="driver-class" value="sun.jdbc.odbc.JdbcOdbcDriver" />
  27. <param name="connection-string" value="jdbc:odbc:VT_DeDupe" />
  28. <param name="user-name" value="" />
  29. <param name="password" value="" />
  30. <param name="query" value="SELECT a.Inc_ID,a.Inc_Notes,a.Inc_Call_ID FROM T_Employees emp INNER JOIN T_Incidents a ON emp.SocialSecurityNumber = a.Inc_EmployeeID WHERE SocialSecurityNumber=60002562" />
  31.  
  32. <column name="Inc_ID" property="Inc_ID" />
  33. <column name="Inc_Notes" property="Inc_Notes" />
  34. <column name="Inc_Call_ID" property="Inc_Call_ID" />
  35.  
  36. </jdbc>
  37. </duke>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement