Coverage Summary for Class: SQLDialect (com.acciente.oacc.sql)

Class Class, % Method, % Line, %
SQLDialect 100% (1/ 1) 100% (2/ 2) 100% (8/ 8)


1 /* 2  * Copyright 2009-2017, Acciente LLC 3  * 4  * Acciente LLC licenses this file to you under the 5  * Apache License, Version 2.0 (the "License"); you 6  * may not use this file except in compliance with the 7  * License. You may obtain a copy of the License at 8  * 9  * http://www.apache.org/licenses/LICENSE-2.0 10  * 11  * Unless required by applicable law or agreed to in 12  * writing, software distributed under the License is 13  * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES 14  * OR CONDITIONS OF ANY KIND, either express or implied. 15  * See the License for the specific language governing 16  * permissions and limitations under the License. 17  */ 18 package com.acciente.oacc.sql; 19  20 public enum SQLDialect { 21  DB2_10_5, 22  Oracle_11_2, 23  PostgreSQL_9_3, 24  SQLServer_12_0, 25  SQLite_3_8, 26  MySQL_5_6, 27  HSQLDB_2_3, 28 }