Home / jdbc odbc

jdbc odbc


Zoho Home | Forums | Blogs | Contact Us | Toll Free : 888 900 9646
 
Quicklinks: Overview | Architecture Overview | Developer Info | Adoption Status | Roadmap
 
Zoho CloudSQL
Developer Information - Connectivity with JDBC/ODBC Drivers
 
Language Overview | Executing a Query | Connectivity with JDBC/ODBC | Sample
 

As CloudSQL enables developers to execute SQL queries on structured data stored in various Zoho Services, it lends itself naturally to support Database Connectivity Standards like JDBC (Java Database Connectivity) and ODBC (Open Database Connectivity). Zoho CloudSQL supports open database connectivity standards JDBC and ODBC, making it easy to use from within widely adopted development languages that support JDBC and ODBC.

Developers who are familiar using JDBC or ODBC drivers for connectivity to databases, can now use Zoho CloudSQL drivers to connect to the respective Zoho Service and execute the necessary SQL queries. This also means that, for Zoho Services which support CloudSQL, developers need not learn the respective service specific HTTP Web APIs to extend/develop over that service. They just have know how to use the Zoho CloudSQL drivers for that service to start interacting with it, the same way as they would interact with a database using JDBC or ODBC standard drivers.

Each Zoho service that supports CloudSQL would provide the respective JDBC and ODBC Drivers for connectivity.



Zoho Reports:

Code Snippet: Using JDBC Driver to connect to Zoho Reports

The following is a Java code snippet using JDBC Driver to connect to Zoho Reports and execute an SQL Select statement. Zoho Reports is the first service to support Zoho CloudSQL

import java.sql.DriverManager;
import java.sql.Connection;
import java.sql.Statement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Properties;

public class ZohoReportsCloudSQL
{

public static void main(String args[])
{
Connection con = null;
Statement stmt = null;
ResultSet rs = null;
try
{

Class.forName("com.zoho.cloudsql.jdbc.ZohoReportsDriver");
Properties conProps = new Properties();


conProps.put("ZOHO_API_KEY","abcd");

// Zoho username to login to Zoho service
conProps.put("user","david");

// Zoho password to login to Zoho service
conProps.put("password","davidpwd");

// Uncomment this incase you need proxy settings
/*
// Proxy host name to connect the internet
conProps.put("PROXYSERVER","proxy_hostname");
// Proxy port to connect the internet
conProps.put("PROXYPORT","proxy_port");
// Proxy user name to connect the internet
conProps.put("PROXYUSERNAME","proxy_username");
// Proxy password to connect the internet
conProps.put("PROXYPASSWORD","proxy_password"); */

/* Important Note: Connection is single threaded in Zoho Reports */

// david is the owner of the database 'Sales'
con = DriverManager.getConnection("https://reports.zoho.com/" +
"api/david/Sales"
,conProps);

stmt = con.createStatement();
String sql ="select * from <tablename>";
rs = stmt.executeQuery(sql);
}
catch(SQLException se)
{
// handle any errors
System.out.println("SQLException: " + se.getMessage());
System.out.println("Zoho Reports Error code: " + se.getErrorCode());
}
catch(Exception e)
{
// handle the exception
}
finally
{
if(rs != null)
{
try
{
rs.close();
}
catch(SQLException sqlEx) { } // ignore
}

if(stmt != null)
{
try
{
stmt.close();
}
catch (SQLException sqlEx) { } // ignore
}

if(con != null)
{
try
{
con.close();
}
catch (SQLException sqlEx) { } // ignore
}
}
}

}

Checkout: JDBC Driver documentation for Zoho Reports | Download JDBC Driver for Zoho Reports

Next: Zoho CloudSQL Sample




     RSS of this page