类 OceanBaseDialectFactory
- java.lang.Object
-
- org.apache.seatunnel.connectors.seatunnel.jdbc.internal.dialect.oceanbase.OceanBaseDialectFactory
-
- 所有已实现的接口:
JdbcDialectFactory
@AutoService(JdbcDialectFactory.class) public class OceanBaseDialectFactory extends Object implements JdbcDialectFactory
-
-
构造器概要
构造器 构造器 说明 OceanBaseDialectFactory()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleanacceptsURL(String url)Retrieves whether the dialect thinks that it can open a connection to the given URL.JdbcDialectcreate()JdbcDialectcreate(String compatibleMode, String fieldIde)Create aJdbcDialectinstance based on the driver type and compatible mode.
-
-
-
方法详细资料
-
acceptsURL
public boolean acceptsURL(String url)
从接口复制的说明:JdbcDialectFactoryRetrieves whether the dialect thinks that it can open a connection to the given URL. Typically, dialects will returntrueif they understand the sub-protocol specified in the URL andfalseif they do not.- 指定者:
acceptsURL在接口中JdbcDialectFactory- 参数:
url- the URL of the database- 返回:
trueif this dialect understands the given URL;falseotherwise.
-
create
public JdbcDialect create()
- 指定者:
create在接口中JdbcDialectFactory- 返回:
- Creates a new instance of the
JdbcDialect.
-
create
public JdbcDialect create(@Nonnull String compatibleMode, String fieldIde)
从接口复制的说明:JdbcDialectFactoryCreate aJdbcDialectinstance based on the driver type and compatible mode.- 指定者:
create在接口中JdbcDialectFactory- 参数:
compatibleMode- The compatible mode- 返回:
- a new instance of
JdbcDialect
-
-