com.huemulsolutions.bigdata.sql_decode.huemul_sql_symbol_base.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
class huemul_sql_symbol_base(symbol: String, symbol_line: Int, pos_start: Int, pos_end: Int) extends Serializable {
def getsymbol: String = {return symbol}
def getsymbol_line: Int = {return symbol_line}
def getpos_start: Int = {return pos_start}
def getpos_end: Int = {return pos_end}
}