Class SqlBuilder

java.lang.Object
org.apache.ibatis.jdbc.SqlBuilder

@Deprecated
public class SqlBuilder
extends Object
Deprecated.
Use the SQL Class
Author:
Jeff Butler
  • Method Details

    • BEGIN

      public static void BEGIN()
      Deprecated.
    • RESET

      public static void RESET()
      Deprecated.
    • UPDATE

      public static void UPDATE​(String table)
      Deprecated.
    • SET

      public static void SET​(String sets)
      Deprecated.
    • SQL

      public static String SQL()
      Deprecated.
    • INSERT_INTO

      public static void INSERT_INTO​(String tableName)
      Deprecated.
    • VALUES

      public static void VALUES​(String columns, String values)
      Deprecated.
    • SELECT

      public static void SELECT​(String columns)
      Deprecated.
    • SELECT_DISTINCT

      public static void SELECT_DISTINCT​(String columns)
      Deprecated.
    • DELETE_FROM

      public static void DELETE_FROM​(String table)
      Deprecated.
    • FROM

      public static void FROM​(String table)
      Deprecated.
    • JOIN

      public static void JOIN​(String join)
      Deprecated.
    • INNER_JOIN

      public static void INNER_JOIN​(String join)
      Deprecated.
    • LEFT_OUTER_JOIN

      public static void LEFT_OUTER_JOIN​(String join)
      Deprecated.
    • RIGHT_OUTER_JOIN

      public static void RIGHT_OUTER_JOIN​(String join)
      Deprecated.
    • OUTER_JOIN

      public static void OUTER_JOIN​(String join)
      Deprecated.
    • WHERE

      public static void WHERE​(String conditions)
      Deprecated.
    • OR

      public static void OR()
      Deprecated.
    • AND

      public static void AND()
      Deprecated.
    • GROUP_BY

      public static void GROUP_BY​(String columns)
      Deprecated.
    • HAVING

      public static void HAVING​(String conditions)
      Deprecated.
    • ORDER_BY

      public static void ORDER_BY​(String columns)
      Deprecated.