com.mongodb.jdbc.MongoColumnInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongodb-jdbc Show documentation
Show all versions of mongodb-jdbc Show documentation
JDBC Driver for MongoDB Atlas SQL interface
package com.mongodb.jdbc;
import org.bson.BsonType;
public interface MongoColumnInfo {
public boolean isPolymorphic();
public BsonType getBsonTypeEnum();
public String getBsonTypeName();
public int getJDBCType();
public int getNullability();
public String getColumnName();
public String getColumnAlias();
public String getDatabase();
public String getTableName();
public String getTableAlias();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy