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

org.postgresql.core.SqlCommandType Maven / Gradle / Ivy

/*
 * Copyright (c) 2003, PostgreSQL Global Development Group
 * See the LICENSE file in the project root for more information.
 */

package org.postgresql.core;

/**
 * Type information inspection support.
 * @author Jeremy Whiting [email protected]
 *
 */

public enum SqlCommandType {

  /**
   * Use BLANK for empty sql queries or when parsing the sql string is not
   * necessary.
   */
  BLANK,
  INSERT,
  UPDATE,
  DELETE,
  MOVE,
  SELECT,
  WITH,
  CREATE,
  ALTER;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy