Coverage Summary for Class: RegisteredDBTypeManager (com.kotlinorm.database)

Class Class, % Method, % Branch, % Line, % Instruction, %
RegisteredDBTypeManager 100% (1/1) 66.7% (2/3) 87.5% (7/8) 88.9% (40/45)


 /**
  * Copyright 2022-2025 kronos-orm
  *
  * Licensed 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.
  */
 
 package com.kotlinorm.database
 
 import com.kotlinorm.database.mssql.MssqlSupport
 import com.kotlinorm.database.mysql.MysqlSupport
 import com.kotlinorm.database.oracle.OracleSupport
 import com.kotlinorm.database.postgres.PostgresqlSupport
 import com.kotlinorm.database.sqlite.SqliteSupport
 import com.kotlinorm.enums.DBType
 import com.kotlinorm.enums.DBType.Mysql
 import com.kotlinorm.enums.DBType.Postgres
 import com.kotlinorm.enums.DBType.SQLite
 import com.kotlinorm.enums.DBType.Mssql
 import com.kotlinorm.enums.DBType.Oracle
 import com.kotlinorm.interfaces.DatabasesSupport
 
 // Used to generate SQL that is independent of database type, including dialect differences.
 object RegisteredDBTypeManager {
     private val dBTypeSupport: MutableMap<DBType, DatabasesSupport> = mutableMapOf(
         Mysql to MysqlSupport,
         Postgres to PostgresqlSupport,
         SQLite to SqliteSupport,
         Mssql to MssqlSupport,
         Oracle to OracleSupport
     )
 
     @Suppress("UNUSED")
     // Custom functions for generating SQL that is independent of database type, including dialect differences.
     fun registerDBTypeSupport(dbType: DBType, support: DatabasesSupport) {
         dBTypeSupport[dbType] = support
     }
 
     fun getDBSupport(dbType: DBType): DatabasesSupport? {
         return dBTypeSupport[dbType]
     }
 }