阅读(4202)
赞(14)
鸿蒙OS AbsRdbPredicates
2022-08-11 16:19:34 更新
AbsRdbPredicates
java.lang.Object
|---ohos.data.rdb.AbsRdbPredicates
public abstract class AbsRdbPredicates
extends Object
抽象超类,用于为关系数据库(RDB)设置数据库操作条件。
定义了两个 AbsRdbPredicates 实现类,分别包含 RdbPredicates 和 RawRdbPredicates。
构造函数摘要
构造函数 | 描述 |
---|---|
AbsRdbPredicates(String tableName) | AbsPredicates 的构造方法,带有定义的表名。 |
方法总结
修饰符和类型 | 方法 | 描述 |
---|---|---|
void | clear() | |
String | getTableName() | 获取谓词中的数据库表名。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造函数详细信息
AbsRdbPredicates
public AbsRdbPredicates(String tableName)
AbsPredicates 的构造方法,带有定义的表名。
参数:
参数名称 | 参数描述 |
---|---|
tableName | 表示要操作的表名。 |
方法详情
getTableName
public String getTableName()
获取谓词中的数据库表名。
返回:
变量表名的值。
clear
public void clear()