Advertisement
Guest User

Untitled

a guest
Mar 24th, 2013
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. # Copyright (C) 2005-2013 Splunk Inc. All Rights Reserved.
  2. [default]
  3.  
  4. [filemaker]
  5. displayName = FileMaker
  6. typeClass = com.filemaker.jdbc.Driver
  7. connectionUrlFormat = jdbc:filemaker://{0}:{1}/{2}
  8.  
  9.  
  10. [mssql]
  11. displayName = Microsoft SQL Server
  12. typeClass = com.splunk.dbx.sql.type.impl.MicrosoftSqlServer
  13.  
  14. [odbc]
  15. displayName = ODBC
  16. typeClass = com.splunk.dbx.sql.type.impl.ODBC
  17.  
  18. [sqlite]
  19. displayName = SQLite
  20. typeClass = com.splunk.dbx.sql.type.impl.SQLite
  21. local = 1
  22.  
  23. [oracle]
  24. displayName = Oracle
  25. typeClass = com.splunk.dbx.sql.type.impl.Oracle
  26. defaultCatalogName = ORCL
  27.  
  28. [mysql]
  29. displayName = MySQL
  30. typeClass = com.splunk.dbx.sql.type.impl.MySQL
  31. testQuery = SELECT 1
  32. defaultCatalogName = mysql
  33.  
  34. [postgresql]
  35. displayName = PostgreSQL
  36. jdbcDriverClass = org.postgresql.Driver
  37. defaultPort = 5432
  38. connectionUrlFormat = jdbc:postgresql://{0}:{1}/{2}
  39. testQuery = SELECT 1 AS test
  40. defaultCatalogName = postgres
  41. defaultSchema = public
  42.  
  43. [sybase]
  44. displayName = Sybase
  45. typeClass = com.splunk.dbx.sql.type.impl.Sybase
  46.  
  47. [hsql]
  48. displayName = HyperSQL
  49. typeClass = com.splunk.dbx.sql.type.impl.HSQLDB
  50. local = 1
  51.  
  52. [h2]
  53. displayName = H2
  54. typeClass = com.splunk.dbx.sql.type.impl.H2
  55. local = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement