You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by ag...@apache.org on 2017/09/03 19:41:04 UTC

svn commit: r1807165 - in /jmeter/trunk: src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElementBeanInfo.java xdocs/usermanual/properties_reference.xml

Author: agomes
Date: Sun Sep  3 19:41:04 2017
New Revision: 1807165

URL: http://svn.apache.org/viewvc?rev=1807165&view=rev
Log:
Add jdbc.config.jdbc.driver.class & jdbc.config.check.query properties in the documentation

Modified:
    jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElementBeanInfo.java
    jmeter/trunk/xdocs/usermanual/properties_reference.xml

Modified: jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElementBeanInfo.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElementBeanInfo.java?rev=1807165&r1=1807164&r2=1807165&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElementBeanInfo.java (original)
+++ jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/config/DataSourceElementBeanInfo.java Sun Sep  3 19:41:04 2017
@@ -146,7 +146,7 @@ public class DataSourceElementBeanInfo e
     }
 
     /**
-     * Get the check queris for the main databases
+     * Get the check queries for the main databases
      * Based in https://stackoverflow.com/questions/10684244/dbcp-validationquery-for-different-databases
      * @return a String[] with the list of check queries
      */

Modified: jmeter/trunk/xdocs/usermanual/properties_reference.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/properties_reference.xml?rev=1807165&r1=1807164&r2=1807165&view=diff
==============================================================================
--- jmeter/trunk/xdocs/usermanual/properties_reference.xml (original)
+++ jmeter/trunk/xdocs/usermanual/properties_reference.xml Sun Sep  3 19:41:04 2017
@@ -932,6 +932,14 @@ JMETER-SERVER</source>
     Max bytes to store from a <code>CLOB</code> or <code>BLOB</code> in the sampler.<br/>
     Defaults to: <code>65536</code> (bytes)
 </property>
+<property name="jdbc.config.check.query">
+    List of queries used to determine if the database is still responding.<br/>
+    Defaults to: <code>select 1 from INFORMATION_SCHEMA.SYSTEM_USERS|select 1 from dual|select 1 from sysibm.sysdummy1|select 1|select 1 from rdb$database</code>
+</property>
+<property name="jdbc.config.jdbc.driver.class">
+    List of JDBC driver class name<br/>
+    Defaults to: <code>com.mysql.jdbc.Driver|org.postgresql.Driver|oracle.jdbc.OracleDriver|com.ingres.jdbc.IngresDriver|com.microsoft.sqlserver.jdbc.SQLServerDriver|com.microsoft.jdbc.sqlserver.SQLServerDriver|org.apache.derby.jdbc.ClientDriver|org.hsqldb.jdbc.JDBCDriver|com.ibm.db2.jcc.DB2Driver|org.apache.derby.jdbc.ClientDriver|org.h2.Driver|org.firebirdsql.jdbc.FBDrivery|org.mariadb.jdbc.Driver|org.sqlite.JDBC|net.sourceforge.jtds.jdbc.Driver</code>
+</property>
 </properties>
 </section>
 <section name="&sect-num;.24 OS Process Sampler configuration" anchor="os_sampler">