Return-Path: X-Original-To: apmail-drill-commits-archive@www.apache.org Delivered-To: apmail-drill-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 231BD181EB for ; Sun, 6 Dec 2015 16:54:35 +0000 (UTC) Received: (qmail 56721 invoked by uid 500); 6 Dec 2015 16:54:28 -0000 Delivered-To: apmail-drill-commits-archive@drill.apache.org Received: (qmail 56658 invoked by uid 500); 6 Dec 2015 16:54:28 -0000 Mailing-List: contact commits-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: commits@drill.apache.org Delivered-To: mailing list commits@drill.apache.org Received: (qmail 55256 invoked by uid 99); 6 Dec 2015 16:54:28 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 06 Dec 2015 16:54:28 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0687EE03C8; Sun, 6 Dec 2015 16:54:28 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: krishahn@apache.org To: commits@drill.apache.org Date: Sun, 06 Dec 2015 16:55:06 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [40/51] [partial] drill-site git commit: Website update http://git-wip-us.apache.org/repos/asf/drill-site/blob/bbdefcb2/_site/api/1.2/jdbc/org/apache/drill/jdbc/package-tree.html ---------------------------------------------------------------------- diff --git a/_site/api/1.2/jdbc/org/apache/drill/jdbc/package-tree.html b/_site/api/1.2/jdbc/org/apache/drill/jdbc/package-tree.html new file mode 100644 index 0000000..62f6427 --- /dev/null +++ b/_site/api/1.2/jdbc/org/apache/drill/jdbc/package-tree.html @@ -0,0 +1,228 @@ + + + + + + +org.apache.drill.jdbc Class Hierarchy (Apache Drill JDBC Driver v. 1.2.0) + + + + + + + +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +
+

Hierarchy For Package org.apache.drill.jdbc

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +

Copyright © 2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/drill-site/blob/bbdefcb2/_site/api/1.2/jdbc/org/apache/drill/jdbc/package-use.html ---------------------------------------------------------------------- diff --git a/_site/api/1.2/jdbc/org/apache/drill/jdbc/package-use.html b/_site/api/1.2/jdbc/org/apache/drill/jdbc/package-use.html new file mode 100644 index 0000000..8e89f14 --- /dev/null +++ b/_site/api/1.2/jdbc/org/apache/drill/jdbc/package-use.html @@ -0,0 +1,174 @@ + + + + + + +Uses of Package org.apache.drill.jdbc (Apache Drill JDBC Driver v. 1.2.0) + + + + + + + +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +
+

Uses of Package
org.apache.drill.jdbc

+
+
+ +
+ +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +

Copyright © 2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/drill-site/blob/bbdefcb2/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/TracingProxyDriver.html ---------------------------------------------------------------------- diff --git a/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/TracingProxyDriver.html b/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/TracingProxyDriver.html new file mode 100644 index 0000000..6b95209 --- /dev/null +++ b/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/TracingProxyDriver.html @@ -0,0 +1,435 @@ + + + + + + +TracingProxyDriver (Apache Drill JDBC Driver v. 1.2.0) + + + + + + + +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + + +
+
org.apache.drill.jdbc.proxy
+

Class TracingProxyDriver

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    Driver
    +
    +
    +
    +
    public class TracingProxyDriver
    +extends Object
    +implements Driver
    +
    Proxy driver for tracing calls to a JDBC driver. + Reports calls and parameter values to, and return values and exceptions from, + methods defined by JDBC interfaces. + +

    Invocation:

    +

    + To set up a tracing version of a JDBC connection: +

    +
      +
    • + Construct the proxying URL corresponding to the original URL. +

      + The proxying URL corresponding to an original URL is + "jdbc:proxy:original.Driver:original_URL", + where: +

      +
        +
      • + original.Driver is the fully qualified name of + the driver class to proxy and trace (used to load the class to get it + registered with JDBC's DriverManager, when or in case it's + not already loaded) and can be blank if the driver class will already + be loaded, and +
      • +
      • + original_URL is the original URL for the JDBC + data source to now be traced. +
      • +
      +

      + For example, for an original URL of "jdbc:drill:zk=local", the + tracing URL is + "jdbc:proxy:org.apache.drill.jdbc.Driver:jdbc:drill:zk=local". +

      +
    • +
    • + In the JDBC-client code or tool, replace the occurrence of the original + URL with the corresponding proxying URL. +
    • +
    • + Make sure that class TracingProxyDriver will be loaded (e.g., + configure the client to use it as the driver class). +
    • +
    +

    Output:

    +

    + Currently, the tracing output lines are simply written to + System.out (stdout or "standard output"). +

    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +

Copyright © 2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/drill-site/blob/bbdefcb2/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/class-use/TracingProxyDriver.html ---------------------------------------------------------------------- diff --git a/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/class-use/TracingProxyDriver.html b/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/class-use/TracingProxyDriver.html new file mode 100644 index 0000000..3de42cc --- /dev/null +++ b/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/class-use/TracingProxyDriver.html @@ -0,0 +1,119 @@ + + + + + + +Uses of Class org.apache.drill.jdbc.proxy.TracingProxyDriver (Apache Drill JDBC Driver v. 1.2.0) + + + + + + + +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +
+

Uses of Class
org.apache.drill.jdbc.proxy.TracingProxyDriver

+
+
No usage of org.apache.drill.jdbc.proxy.TracingProxyDriver
+ +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +

Copyright © 2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/drill-site/blob/bbdefcb2/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-frame.html ---------------------------------------------------------------------- diff --git a/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-frame.html b/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-frame.html new file mode 100644 index 0000000..2742459 --- /dev/null +++ b/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-frame.html @@ -0,0 +1,20 @@ + + + + + + +org.apache.drill.jdbc.proxy (Apache Drill JDBC Driver v. 1.2.0) + + + + +

org.apache.drill.jdbc.proxy

+
+

Classes

+ +
+ + http://git-wip-us.apache.org/repos/asf/drill-site/blob/bbdefcb2/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-summary.html ---------------------------------------------------------------------- diff --git a/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-summary.html b/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-summary.html new file mode 100644 index 0000000..4dc350d --- /dev/null +++ b/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-summary.html @@ -0,0 +1,149 @@ + + + + + + +org.apache.drill.jdbc.proxy (Apache Drill JDBC Driver v. 1.2.0) + + + + + + + +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +
+

Package org.apache.drill.jdbc.proxy

+
+
Tracing proxy JDBC driver.
+
+

See: Description

+
+
+
    +
  • + + + + + + + + + + + + +
    Class Summary 
    ClassDescription
    TracingProxyDriver +
    Proxy driver for tracing calls to a JDBC driver.
    +
    +
  • +
+ + + +

Package org.apache.drill.jdbc.proxy Description

+
Tracing proxy JDBC driver. Traces calls to another JDBC driver.
+
See Also:
TracingProxyDriver
+
+ +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +

Copyright © 2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/drill-site/blob/bbdefcb2/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-tree.html ---------------------------------------------------------------------- diff --git a/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-tree.html b/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-tree.html new file mode 100644 index 0000000..203fa4b --- /dev/null +++ b/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-tree.html @@ -0,0 +1,132 @@ + + + + + + +org.apache.drill.jdbc.proxy Class Hierarchy (Apache Drill JDBC Driver v. 1.2.0) + + + + + + + +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +
+

Hierarchy For Package org.apache.drill.jdbc.proxy

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +

Copyright © 2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/drill-site/blob/bbdefcb2/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-use.html ---------------------------------------------------------------------- diff --git a/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-use.html b/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-use.html new file mode 100644 index 0000000..03d17dc --- /dev/null +++ b/_site/api/1.2/jdbc/org/apache/drill/jdbc/proxy/package-use.html @@ -0,0 +1,119 @@ + + + + + + +Uses of Package org.apache.drill.jdbc.proxy (Apache Drill JDBC Driver v. 1.2.0) + + + + + + + +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +
+

Uses of Package
org.apache.drill.jdbc.proxy

+
+
No usage of org.apache.drill.jdbc.proxy
+ +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +

Copyright © 2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/drill-site/blob/bbdefcb2/_site/api/1.2/jdbc/overview-frame.html ---------------------------------------------------------------------- diff --git a/_site/api/1.2/jdbc/overview-frame.html b/_site/api/1.2/jdbc/overview-frame.html new file mode 100644 index 0000000..67786a3 --- /dev/null +++ b/_site/api/1.2/jdbc/overview-frame.html @@ -0,0 +1,23 @@ + + + + + + +Overview List (Apache Drill JDBC Driver v. 1.2.0) + + + + +

Apache Drill JDBC Driver v. 1.2.0

+ + +

 

+ + http://git-wip-us.apache.org/repos/asf/drill-site/blob/bbdefcb2/_site/api/1.2/jdbc/overview-summary.html ---------------------------------------------------------------------- diff --git a/_site/api/1.2/jdbc/overview-summary.html b/_site/api/1.2/jdbc/overview-summary.html new file mode 100644 index 0000000..29d7a87 --- /dev/null +++ b/_site/api/1.2/jdbc/overview-summary.html @@ -0,0 +1,152 @@ + + + + + + +Overview (Apache Drill JDBC Driver v. 1.2.0) + + + + + + + +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +
+

Apache Drill JDBC Driver version 1.2.0

+
+
+ + + + + + + + + + + + +
Drill JDBC Driver 
PackageDescription
org.apache.drill.jdbc +
JDBC driver for Drill.
+
+
+
+ + + + + + + + + + + + +
Tracing Proxy JDBC Driver 
PackageDescription
org.apache.drill.jdbc.proxy +
Tracing proxy JDBC driver.
+
+
+ +
+ + + + + +
Apache Drill JDBC Driver v. 1.2.0
+
+ + +

Copyright © 2015 The Apache Software Foundation. All rights reserved.

+ +