public interface MysqlColumnOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
String |
getCollation()
Column collation.
|
com.google.protobuf.ByteString |
getCollationBytes()
Column collation.
|
String |
getColumn()
Column name.
|
com.google.protobuf.ByteString |
getColumnBytes()
Column name.
|
String |
getDataType()
The MySQL data type.
|
com.google.protobuf.ByteString |
getDataTypeBytes()
The MySQL data type.
|
int |
getLength()
Column length.
|
boolean |
getNullable()
Whether or not the column can accept a null value.
|
int |
getOrdinalPosition()
The ordinal position of the column in the table.
|
boolean |
getPrimaryKey()
Whether or not the column represents a primary key.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofString getColumn()
Column name.
string column = 1;com.google.protobuf.ByteString getColumnBytes()
Column name.
string column = 1;String getDataType()
The MySQL data type. Full data types list can be found here: https://dev.mysql.com/doc/refman/8.0/en/data-types.html
string data_type = 2;com.google.protobuf.ByteString getDataTypeBytes()
The MySQL data type. Full data types list can be found here: https://dev.mysql.com/doc/refman/8.0/en/data-types.html
string data_type = 2;int getLength()
Column length.
int32 length = 3;String getCollation()
Column collation.
string collation = 4;com.google.protobuf.ByteString getCollationBytes()
Column collation.
string collation = 4;boolean getPrimaryKey()
Whether or not the column represents a primary key.
bool primary_key = 5;boolean getNullable()
Whether or not the column can accept a null value.
bool nullable = 6;int getOrdinalPosition()
The ordinal position of the column in the table.
int32 ordinal_position = 7;Copyright © 2022 Google LLC. All rights reserved.