{"id":46611,"date":"2020-08-05T00:00:00","date_gmt":"2020-08-05T07:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/"},"modified":"2025-11-13T12:54:59","modified_gmt":"2025-11-13T20:54:59","slug":"connecting-to-griddb-via-jdbc-with-sqlworkbench-j","status":"publish","type":"post","link":"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/","title":{"rendered":"Connecting to GridDB via JDBC with SQLWorkbench\/J"},"content":{"rendered":"<p>As of version 4.5, GridDB now supports SQL via JDBC, allowing you to integrate your favorite applications that support JDBC. In this case, we&#8217;re going to teach you to use SQLWorkbench\/J to view data stored in GridDB by using simple SQL queries. <\/p>\n<p>We&#8217;re going assume you&#8217;ve gotten the GridDB server running already by following the <a href=\"https:\/\/docs.griddb.net\/gettingstarted\/using-rpmyum\/\">Quick start<\/a> guide so the first step will be to build the GridDB JDBC driver.<\/p>\n<h2>Building the GridDB JDBC Driver<\/h2>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ sudo yum -y install java-1.8.0-openjdk-devel\n $ git clone https:\/\/github.com\/griddb\/jdbc.git griddb_jdbc\n $ cd griddb_jdbc\n $ ant\n $ sudo cp bin\/gridstore-jdbc.jar \/usr\/share\/java\/\n<\/code><\/pre>\n<\/div>\n<p>Depending on your GridDB configuration, you will need to edit JDBCSelect.java to correct the configuration parameter such as clusterName, username, and password. In particular, the clusterName is &#8220;myCluster&#8221; while most GridDB documentation uses &#8220;defaultCluster&#8221;. Now we&#8217;ll run the sample:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ cd sample\/en\/jdbc\/\n$ javac JDBCSelect.java\n$ export CLASSPATH=:\/usr\/share\/java\/gridstore-jdbc.jar\n$ java JDBCSelect\nSQL Create Table name=SampleJDBC_Select\nSQL Insert count=5\nSQL row(id=3, value=test3)\nSQL row(id=4, value=test4)\nsuccess!\n<\/code><\/pre>\n<\/div>\n<h2>SQLWorkbench\/J Download and Execution<\/h2>\n<p>First, we download and unzip the SQLWorkbench\/J from their <a href=\"https:\/\/www.sql-workbench.eu\/downloads.html\">Downloads page<\/a>. The executable file<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">\n$ wget https:\/\/www.sql-workbench.eu\/Workbench-Build125.zip\n$ mkdir sqlworkbench\n$ cd sqlworkbench\n$ unzip ..\/Workbench-Build125.zip\n$ chmod +x *.sh\n<\/code><\/pre>\n<\/div>\n<p>Now we can run the command line SQLWorkbench\/J:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ .\/sqlwbconsole.sh\n<\/code><\/pre>\n<\/div>\n<p>Now we can connect to GridDB with the WBConnect command. We need to set the driver classpath and JAR file along with the JDB URL, username and password as shown below. <\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">SQL Workbench\/J (125) console interface started.\n Enter exit to quit.\n Enter WbHelp for a list of SQL Workbench\/J specific commands\n Config directory: \/home\/owen\/.sqlworkbench\n\n SQL> WbConnect -driver=com.toshiba.mwcloud.gs.sql.Driver -driverJar=\/usr\/share\/java\/gridstore-jdbc.jar -url=jdbc:gs:\/\/239.0.0.1:41999\/defaultCluster\/public -username=admin -password=admin\n;\n\n Connection to \"User=admin, URL=jdbc:gs:\/\/239.0.0.1:41999\/defaultCluster\/public\" \n successful\n\nSQL> select * from SampleJDBC_Select;\n\nid | value\n---+------\n 0 | test0\n 1 | test1\n 2 | test2\n 3 | test3\n 4 | test4\n\n(5 Rows)\nSELECT executed successfully\n\n SQL> \n<\/code><\/pre>\n<\/div>\n<p>The above select statement reads data created by the Sample application. <\/p>\n<h2>Graphical SQLWorkbench\/J<\/h2>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">$ .\/sqlworkbench.sh\n<\/code><\/pre>\n<\/div>\n<p>After SQLWorkbench starts, first close the new connection window so we can add the GridDB driver. This can be done from the <code>File->Manage Drivers<\/code> menu. <\/p>\n<p>First, input a name for the driver, such as &#8220;GridDB&#8221;, and then use the file selection dialog to find and input the JAR location. In our case it&#8217;s \/usr\/share\/java\/gridstore-jdbc.jar and for us, it auto-filled the class path.<\/p>\n<p><img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2020\/07\/add_driver.png\" alt=\"\" width=\"894\" height=\"488\" class=\"alignnone size-large wp-image-26745\" srcset=\"\/wp-content\/uploads\/2020\/07\/add_driver.png 894w, \/wp-content\/uploads\/2020\/07\/add_driver-300x164.png 300w, \/wp-content\/uploads\/2020\/07\/add_driver-768x419.png 768w, \/wp-content\/uploads\/2020\/07\/add_driver-600x328.png 600w\" sizes=\"(max-width: 894px) 100vw, 894px\" \/><\/p>\n<p>After adding the GridDB driver, navigate to <code>File->Connect Window<\/code> or press <code>Alt-C<\/code>. Within the Connection Window, you set the name of the connection such as &#8220;Local GridDB&#8221;, select the GridDB from the drop down menu of Drivers. For the URL, we&#8217;re using jdbc:gs:\/\/239.0.0.1:41999\/defaultCluster\/public which is appropriate for a standard GridDB installation and the username and password set via gs_passwd.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2020\/07\/connection-1024x834.png\" alt=\"\" width=\"1024\" height=\"834\" class=\"alignnone size-large wp-image-26744\" srcset=\"\/wp-content\/uploads\/2020\/07\/connection-1024x834.png 1024w, \/wp-content\/uploads\/2020\/07\/connection-300x244.png 300w, \/wp-content\/uploads\/2020\/07\/connection-768x625.png 768w, \/wp-content\/uploads\/2020\/07\/connection-600x489.png 600w, \/wp-content\/uploads\/2020\/07\/connection.png 1040w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p>Once all of the above fields are filled, click the &#8220;Test&#8221; button and if everything is configured properly, a dialog &#8220;Connection to jdbc:gs:\/\/239.0.0.1:41999\/defaultCluster\/public successful&#8221; will be shown. <\/p>\n<p>Now we can query GridDB using SQL; here we typed <code>select * from SampleJDBC_Select<\/code> into the Statement text field and clicked on the Play button. This will query data written by JDBCSample. The returned rows are shown in a grid in the Results tab.   <\/p>\n<p><img decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2020\/08\/jdbc_select-1.png\" alt=\"\" width=\"958\" height=\"645\" class=\"alignnone size-large wp-image-26778\" srcset=\"\/wp-content\/uploads\/2020\/08\/jdbc_select-1.png 958w, \/wp-content\/uploads\/2020\/08\/jdbc_select-1-300x202.png 300w, \/wp-content\/uploads\/2020\/08\/jdbc_select-1-768x517.png 768w, \/wp-content\/uploads\/2020\/08\/jdbc_select-1-600x404.png 600w\" sizes=\"(max-width: 958px) 100vw, 958px\" \/><\/p>\n<p>This was just a quick look into using GridDB and SQLWorkbench\/J and how you can get started using SQL with GridDB.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As of version 4.5, GridDB now supports SQL via JDBC, allowing you to integrate your favorite applications that support JDBC. In this case, we&#8217;re going to teach you to use SQLWorkbench\/J to view data stored in GridDB by using simple SQL queries. We&#8217;re going assume you&#8217;ve gotten the GridDB server running already by following the [&hellip;]<\/p>\n","protected":false},"author":71,"featured_media":26753,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-46611","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Connecting to GridDB via JDBC with SQLWorkbench\/J | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"As of version 4.5, GridDB now supports SQL via JDBC, allowing you to integrate your favorite applications that support JDBC. In this case, we&#039;re going to\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Connecting to GridDB via JDBC with SQLWorkbench\/J | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"As of version 4.5, GridDB now supports SQL via JDBC, allowing you to integrate your favorite applications that support JDBC. In this case, we&#039;re going to\" \/>\n<meta property=\"og:url\" content=\"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/\" \/>\n<meta property=\"og:site_name\" content=\"GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/griddbcommunity\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-08-05T07:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-13T20:54:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/griddb.net\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-fPkvU7RDmCo-unsplash-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2400\" \/>\n\t<meta property=\"og:image:height\" content=\"1600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Owen\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:site\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Owen\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/\"},\"author\":{\"name\":\"Owen\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66\"},\"headline\":\"Connecting to GridDB via JDBC with SQLWorkbench\/J\",\"datePublished\":\"2020-08-05T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/\"},\"wordCount\":419,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-fPkvU7RDmCo-unsplash-1.jpg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/\",\"url\":\"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/\",\"name\":\"Connecting to GridDB via JDBC with SQLWorkbench\/J | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-fPkvU7RDmCo-unsplash-1.jpg\",\"datePublished\":\"2020-08-05T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:59+00:00\",\"description\":\"As of version 4.5, GridDB now supports SQL via JDBC, allowing you to integrate your favorite applications that support JDBC. In this case, we're going to\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-fPkvU7RDmCo-unsplash-1.jpg\",\"contentUrl\":\"\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-fPkvU7RDmCo-unsplash-1.jpg\",\"width\":2400,\"height\":1600},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website\",\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/\",\"name\":\"GridDB: Open Source Time Series Database for IoT\",\"description\":\"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL\",\"publisher\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization\",\"name\":\"Fixstars\",\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"contentUrl\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"width\":200,\"height\":83,\"caption\":\"Fixstars\"},\"image\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/griddbcommunity\/\",\"https:\/\/x.com\/GridDBCommunity\",\"https:\/\/www.linkedin.com\/company\/griddb-by-toshiba\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66\",\"name\":\"Owen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g\",\"caption\":\"Owen\"},\"url\":\"https:\/\/griddb.net\/en\/author\/owen\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Connecting to GridDB via JDBC with SQLWorkbench\/J | GridDB: Open Source Time Series Database for IoT","description":"As of version 4.5, GridDB now supports SQL via JDBC, allowing you to integrate your favorite applications that support JDBC. In this case, we're going to","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/","og_locale":"en_US","og_type":"article","og_title":"Connecting to GridDB via JDBC with SQLWorkbench\/J | GridDB: Open Source Time Series Database for IoT","og_description":"As of version 4.5, GridDB now supports SQL via JDBC, allowing you to integrate your favorite applications that support JDBC. In this case, we're going to","og_url":"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2020-08-05T07:00:00+00:00","article_modified_time":"2025-11-13T20:54:59+00:00","og_image":[{"width":2400,"height":1600,"url":"https:\/\/griddb.net\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-fPkvU7RDmCo-unsplash-1.jpg","type":"image\/jpeg"}],"author":"Owen","twitter_card":"summary_large_image","twitter_creator":"@GridDBCommunity","twitter_site":"@GridDBCommunity","twitter_misc":{"Written by":"Owen","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/#article","isPartOf":{"@id":"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/"},"author":{"name":"Owen","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66"},"headline":"Connecting to GridDB via JDBC with SQLWorkbench\/J","datePublished":"2020-08-05T07:00:00+00:00","dateModified":"2025-11-13T20:54:59+00:00","mainEntityOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/"},"wordCount":419,"commentCount":0,"publisher":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-fPkvU7RDmCo-unsplash-1.jpg","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/","url":"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/","name":"Connecting to GridDB via JDBC with SQLWorkbench\/J | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/#primaryimage"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-fPkvU7RDmCo-unsplash-1.jpg","datePublished":"2020-08-05T07:00:00+00:00","dateModified":"2025-11-13T20:54:59+00:00","description":"As of version 4.5, GridDB now supports SQL via JDBC, allowing you to integrate your favorite applications that support JDBC. In this case, we're going to","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/blog\/connecting-to-griddb-via-jdbc-with-sqlworkbench-j\/#primaryimage","url":"\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-fPkvU7RDmCo-unsplash-1.jpg","contentUrl":"\/wp-content\/uploads\/2020\/07\/caspar-camille-rubin-fPkvU7RDmCo-unsplash-1.jpg","width":2400,"height":1600},{"@type":"WebSite","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website","url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/","name":"GridDB: Open Source Time Series Database for IoT","description":"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL","publisher":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization","name":"Fixstars","url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/logo\/image\/","url":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","contentUrl":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","width":200,"height":83,"caption":"Fixstars"},"image":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/griddbcommunity\/","https:\/\/x.com\/GridDBCommunity","https:\/\/www.linkedin.com\/company\/griddb-by-toshiba"]},{"@type":"Person","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66","name":"Owen","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g","caption":"Owen"},"url":"https:\/\/griddb.net\/en\/author\/owen\/"}]}},"_links":{"self":[{"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/posts\/46611","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/users\/71"}],"replies":[{"embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/comments?post=46611"}],"version-history":[{"count":1,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/posts\/46611\/revisions"}],"predecessor-version":[{"id":51292,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/posts\/46611\/revisions\/51292"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/media\/26753"}],"wp:attachment":[{"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/media?parent=46611"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/categories?post=46611"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/griddb.net\/en\/wp-json\/wp\/v2\/tags?post=46611"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}