All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.sqlclient.spi.DatabaseMetadata Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR1
Show newest version
package io.vertx.sqlclient.spi;

import io.vertx.codegen.annotations.VertxGen;

/**
 * Contains static metadata about the backend database server
 */
@VertxGen
public interface DatabaseMetadata {

  /**
   * @return The product name of the backend database server
   */
  String productName();

  /**
   * @return The full version string for the backend database server.
   * This may be useful for for parsing more subtle aspects of the version string.
   * For simple information like database major and minor version, use {@link #majorVersion()}
   * and {@link #minorVersion()} instead.
   */
  String fullVersion();

  /**
   * @return The major version of the backend database server
   */
  int majorVersion();

  /**
   * @return The minor version of the backend database server
   */
  int minorVersion();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy