com.mongodb.jdbc.Column 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.BsonValue;
public class Column {
public String database;
public String table;
public String tableAlias;
public String column;
public String columnAlias;
public BsonValue value;
@Override
public String toString() {
return "Column{"
+ "database='"
+ database
+ '\''
+ ", table='"
+ table
+ '\''
+ ", tableAlias='"
+ tableAlias
+ '\''
+ ", column='"
+ column
+ '\''
+ ", columnAlias='"
+ columnAlias
+ '\''
+ ", value="
+ value
+ '}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy