blob: b27d867b77b1e6628375fa26eef01fa16f9ef92e [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<html>
<body>
This document is for the JDBC implementation of Phoenix, targeting those who are interested in extending the level of SQL support.
For users of Phoenix, the programmatic API is <a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/sql/package-summary.html">JDBC</a>.
For example, the following snippet demonstrates how to query a table:
<pre>
Properties props = new Properties();
// Ensure the driver is on classpath
// Connect through Phoenix to the zookeeper quorum with a host name of myServer
Connection conn = DriverManager.getConnection("jdbc:phoenix:myServer", props);
try {
PreparedStatement statement = conn.prepareStatement("SELECT count(1) FROM product_metrics WHERE organization_id=?");
statement.setString(1, orgId);
ResultSet rs = statement.executeQuery();
if (rs.next()) {
System.out.println("Row count of orgId='" + orgId + "' is " + rs.getLong(1));
}
} finally {
conn.close();
}
</pre>
</body>
</html>