? ExisteCampo("MiCampo","MiTabla") FUNCTION ExisteCampo(tcCampo,tcTabla) LOCAL la(1) AFIELDS(la,tcTabla) RETURN ASCAN(la,tcCampo,1,0,1,15) # 0 ENDFUNC
*** Otra forma de Verificar si existe CampoSELECT MiTablaIF FSIZE("MiCampo") = 0 ALTER TABLE MiTabla ADD COLUMN MiCampo c(20) NULLELSE *** No hace nadaENDIF
GRACIAS..
Excelente información. Muchas gracias.
Muy efectiva ambas opciones. muchas gracias! larga vida al zorro!!!
*** Otra forma de Verificar si existe CampoSELECT MiTablaIF TYPE("MiCampo")="U" ALTER TABLE MiTabla ADD COLUMN MiCampo c(20) NULLENDIF
muchas gracias
Los comentarios son moderados, por lo que pueden demorar varias horas para su publicación.
*** Otra forma de Verificar si existe Campo
ResponderBorrarSELECT MiTabla
IF FSIZE("MiCampo") = 0
ALTER TABLE MiTabla ADD COLUMN MiCampo c(20) NULL
ELSE
*** No hace nada
ENDIF
GRACIAS..
ResponderBorrarExcelente información. Muchas gracias.
ResponderBorrarMuy efectiva ambas opciones. muchas gracias! larga vida al zorro!!!
ResponderBorrar*** Otra forma de Verificar si existe Campo
ResponderBorrarSELECT MiTabla
IF TYPE("MiCampo")="U"
ALTER TABLE MiTabla ADD COLUMN MiCampo c(20) NULL
ENDIF
muchas gracias
ResponderBorrar