Package org.lealone.dbobject.table

Examples of org.lealone.dbobject.table.Table.supportsColumnFamily()


    //只用于update语句
    @Override
    protected Column readTableColumn(TableFilter filter) {
        Table t = filter.getTable();
        if (!t.supportsColumnFamily())
            return super.readTableColumn(filter);

        //完整的语法是: catalogName(也就是数据库名).tableAlias.columnFamilyName.columnName
        //如果没有使用表别名,tableAlias实际上就是原始表名
        String columnFamilyName = null;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.