Uses of Interface
cc.carm.lib.easysql.api.SQLAction
-
-
Uses of SQLAction in cc.carm.lib.easysql.action
Classes in cc.carm.lib.easysql.action that implement SQLAction Modifier and Type Class Description classAbstractSQLAction<T>classPreparedSQLBatchUpdateActionImplclassPreparedSQLUpdateActionImplclassSQLUpdateActionImplclassSQLUpdateBatchActionImpl -
Uses of SQLAction in cc.carm.lib.easysql.action.query
Classes in cc.carm.lib.easysql.action.query that implement SQLAction Modifier and Type Class Description classPreparedQueryActionImplclassQueryActionImpl -
Uses of SQLAction in cc.carm.lib.easysql.api.action
Subinterfaces of SQLAction in cc.carm.lib.easysql.api.action Modifier and Type Interface Description interfacePreparedSQLUpdateActioninterfacePreparedSQLUpdateBatchActioninterfaceSQLUpdateActioninterfaceSQLUpdateBatchAction -
Uses of SQLAction in cc.carm.lib.easysql.api.action.query
Subinterfaces of SQLAction in cc.carm.lib.easysql.api.action.query Modifier and Type Interface Description interfacePreparedQueryActioninterfaceQueryActionSQLQueryAction 是用于承载SQL查询语句并进行处理、返回并自动关闭连接的基本类。 -
Uses of SQLAction in cc.carm.lib.easysql.api.builder
Classes in cc.carm.lib.easysql.api.builder with type parameters of type SQLAction Modifier and Type Interface Description interfaceConditionalBuilder<B extends ConditionalBuilder<B,T>,T extends SQLAction<?>>interfaceInsertBuilder<T extends SQLAction<?>>interfaceReplaceBuilder<T extends SQLAction<?>>REPLACE 语句用于将一组值更新进数据表中。Methods in cc.carm.lib.easysql.api.builder that return SQLAction Modifier and Type Method Description default SQLAction<java.lang.Integer>TableAlterBuilder. addAutoIncrementColumn(@NotNull java.lang.String columnName)为该表添加一个自增列
自增列强制要求为数字类型,非空,且为UNIQUE。default SQLAction<java.lang.Integer>TableAlterBuilder. addAutoIncrementColumn(@NotNull java.lang.String columnName, @NotNull NumberType numberType)为该表添加一个自增列
自增列强制要求为数字类型,非空,且为UNIQUE。default SQLAction<java.lang.Integer>TableAlterBuilder. addAutoIncrementColumn(@NotNull java.lang.String columnName, @Nullable NumberType numberType, boolean primary, boolean unsigned)为该表添加一个自增列default SQLAction<java.lang.Integer>TableAlterBuilder. addColumn(@NotNull java.lang.String columnName, @NotNull java.lang.String settings)为表添加一列SQLAction<java.lang.Integer>TableAlterBuilder. addColumn(@NotNull java.lang.String columnName, @NotNull java.lang.String settings, @Nullable java.lang.String afterColumn)为表添加一列SQLAction<java.lang.Integer>TableAlterBuilder. addIndex(@NotNull IndexType indexType, @NotNull java.lang.String indexName, @NotNull java.lang.String columnName, @NotNull java.lang.String... moreColumns)SQLAction<java.lang.Integer>TableAlterBuilder. changeComment(@NotNull java.lang.String newTableComment)SQLAction<java.lang.Integer>TableAlterBuilder. dropForeignKey(@NotNull java.lang.String keySymbol)为该表移除一个外键SQLAction<java.lang.Integer>TableAlterBuilder. dropIndex(@NotNull java.lang.String indexName)为该表移除一个索引SQLAction<java.lang.Integer>TableAlterBuilder. dropPrimaryKey()为该表移除主键(须添加新主键)SQLAction<java.lang.Integer>TableAlterBuilder. modifyColumn(@NotNull java.lang.String columnName, @NotNull java.lang.String settings)default SQLAction<java.lang.Integer>TableAlterBuilder. modifyColumn(@NotNull java.lang.String columnName, @NotNull java.lang.String columnSettings, @NotNull java.lang.String afterColumn)SQLAction<java.lang.Integer>TableAlterBuilder. removeColumn(@NotNull java.lang.String columnName)SQLAction<java.lang.Integer>TableAlterBuilder. removeColumnDefault(@NotNull java.lang.String columnName)SQLAction<java.lang.Integer>TableAlterBuilder. renameColumn(@NotNull java.lang.String columnName, @NotNull java.lang.String newName)SQLAction<java.lang.Integer>TableAlterBuilder. renameTo(@NotNull java.lang.String newTableName)SQLAction<java.lang.Integer>TableAlterBuilder. setAutoIncrementIndex(int index)SQLAction<java.lang.Integer>TableAlterBuilder. setColumnDefault(@NotNull java.lang.String columnName, @NotNull java.lang.String defaultValue) -
Uses of SQLAction in cc.carm.lib.easysql.api.function.defaults
Methods in cc.carm.lib.easysql.api.function.defaults with parameters of type SQLAction Modifier and Type Method Description voidDefaultSQLExceptionHandler. accept(java.sql.SQLException exception, SQLAction<?> sqlAction) -
Uses of SQLAction in cc.carm.lib.easysql.builder.impl
Classes in cc.carm.lib.easysql.builder.impl with type parameters of type SQLAction Modifier and Type Class Description classAbstractConditionalBuilder<B extends ConditionalBuilder<B,T>,T extends SQLAction<?>>classInsertBuilderImpl<T extends SQLAction<?>>classReplaceBuilderImpl<T extends SQLAction<?>>Methods in cc.carm.lib.easysql.builder.impl that return SQLAction Modifier and Type Method Description SQLAction<java.lang.Integer>TableAlterBuilderImpl. addColumn(@NotNull java.lang.String columnName, @NotNull java.lang.String settings, @Nullable java.lang.String afterColumn)SQLAction<java.lang.Integer>TableAlterBuilderImpl. addIndex(@NotNull IndexType indexType, @NotNull java.lang.String indexName, @NotNull java.lang.String columnName, @NotNull java.lang.String... moreColumns)SQLAction<java.lang.Integer>TableAlterBuilderImpl. changeComment(@NotNull java.lang.String newTableComment)SQLAction<java.lang.Integer>TableAlterBuilderImpl. dropForeignKey(@NotNull java.lang.String keySymbol)SQLAction<java.lang.Integer>TableAlterBuilderImpl. dropIndex(@NotNull java.lang.String indexName)SQLAction<java.lang.Integer>TableAlterBuilderImpl. dropPrimaryKey()SQLAction<java.lang.Integer>TableAlterBuilderImpl. modifyColumn(@NotNull java.lang.String columnName, @NotNull java.lang.String settings)SQLAction<java.lang.Integer>TableAlterBuilderImpl. removeColumn(@NotNull java.lang.String columnName)SQLAction<java.lang.Integer>TableAlterBuilderImpl. removeColumnDefault(@NotNull java.lang.String columnName)SQLAction<java.lang.Integer>TableAlterBuilderImpl. renameColumn(@NotNull java.lang.String columnName, @NotNull java.lang.String newName)SQLAction<java.lang.Integer>TableAlterBuilderImpl. renameTo(@NotNull java.lang.String newTableName)SQLAction<java.lang.Integer>TableAlterBuilderImpl. setAutoIncrementIndex(int index)SQLAction<java.lang.Integer>TableAlterBuilderImpl. setColumnDefault(@NotNull java.lang.String columnName, @NotNull java.lang.String defaultValue)
-