OracleColumn constructor

OracleColumn({
  1. String? column,
  2. String? dataType,
  3. String? encoding,
  4. int? length,
  5. bool? nullable,
  6. int? ordinalPosition,
  7. int? precision,
  8. bool? primaryKey,
  9. int? scale,
})

Implementation

OracleColumn({
  this.column,
  this.dataType,
  this.encoding,
  this.length,
  this.nullable,
  this.ordinalPosition,
  this.precision,
  this.primaryKey,
  this.scale,
});