Can we create a virtual table with temporary information from the select command (not other tables)?

StackOverflow https://stackoverflow.com/questions/11875687

  •  25-06-2021
  •  | 
  •  

Frage

I need to fill up a TDBLookupComboBox with the options for a ENUM column:

MOD_MARKETING       ENUM('NENHUMA','CONSULTAR','CADASTRAR','GERENCIAR')

But I do not want to create a new table in the database project just for that. I don't want to use assistant tables. Only tables with the user content.

So, how may I create a temporary virtual table every time I open my application and put those four rows without touch the database structure on the server?

War es hilfreich?

Lösung

I have found a component called VirtualTable by DevArt.

It does exactly what I needed.

http://www.devart.com/vtable/

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top