com.huemulsolutions.bigdata.sql_decode.huemul_sql_tables.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of huemul-sql-decode Show documentation
Show all versions of huemul-sql-decode Show documentation
Obtiene los campos y tablas utilizados en una sentencia SQL. Dada la siguiente consulta:description
select campo1 as Id, campo2 as descripcion from Tabla_datos
retorna un arregla con Id (obtenido desde campo1 de tabla "tabla_datos"), Descripcion (obtenido desde campo2 de tabla "tabla_datos")
The newest version!
package com.huemulsolutions.bigdata.sql_decode
/**
* Save "database.table alias"
*/
class huemul_sql_tables extends Serializable {
var table_name: String = null
var database_name: String = null
var tableAlias_name: String = null
}