first commit for openGauss connector jdbc

This commit is contained in:
lishifu
2020-06-30 14:58:21 +08:00
parent f2f872da1f
commit 8617931d2b
731 changed files with 137912 additions and 73 deletions

View File

@ -0,0 +1,22 @@
---
layout: default_docs
title: Chapter 1. Introduction
header: Chapter 1. Introduction
resource: media
previoustitle: The PostgreSQL™ JDBC Interface
previous: index.html
nexttitle: Chapter 2. Setting up the JDBC Driver
next: setup.html
---
JDBC is a core API of Java 1.1 and later. It provides a standard set of interfaces
to SQL-compliant databases.
PostgreSQL™ provides a *type 4* JDBC driver. Type 4 indicates that the driver is
written in Pure Java, and communicates in the database system's own network protocol.
Because of this, the driver is platform independent; once compiled, the driver
can be used on any system.
This manual is not intended as a complete guide to JDBC programming, but should
help to get you started. For more information refer to the standard JDBC API
documentation. Also, take a look at the examples included with the source.