This page describes an older version of the product. The latest stable version is 16.4.

SQL Clients


The In-Grid SQL Query driver can be used with existing visualization tools, to gain insight into the data grid by using the specific tool-provided features such as drag and drop.

Examples:

SquirreL

To install SquirreL for use with the InsightEdge platform:

  1. Download and install SquirreL .
  2. Copy all of the XAP/InsightEdge JAR files (located in …xap/lib and …xap/insightedge/lib/jdbc) to the squirreL lib folder.
  3. Start SquirreL.
  4. Click the Drivers vertical tab on the left, and then click + to add a new driver. image

  5. Click the Aliases vertical tab on the left, and then click + to add a new connection. Sample URL: jdbc:xap:url=jini://*/*/mySpace?locators=127.0.1.1&groups=xap-12.3.1 image

  6. Create a connection to the XAP data grid. image

  7. Run a test query, for example SELECT * FROM Product;. image

SQLLine

Before installing and using SQLLine, make sure you have at least one Space deployed that contains data, and that the Space is accessible.

To use SQLLine with the InsightEdge platform:

  1. Download SQLLine .
  2. Open a command window to proceed with initializing the data grid and SQLLine.
  3. Type cd ./xap-calcite/.
  4. Type ./sqlline.
  5. Use the following command to access the Space with SQLLine:

    !connect jdbc:xap:url=jini://*/*/space?locators=127.0.0.1 Enter credentials if your space is secured (or just press Return otherwise).
    
  6. To list available tables, type:

    !tables
    
  7. Type a SQL query, for example:

    SELECT * FROM Product;
    
  8. To close sqlline, use the following command:

    !quit