D
dusans
Is there a python module to make autocomplete suggestion easy.
I would build an api reference as a string:
CATALOG1.SCHEME1.TABLE1.column1
CATALOG1.SCHEME1.TABLE1.column2
CATALOG1.SCHEME1.TABLE1.column3
..
..
CATALOG10.SCHEME10.TABLE100.column1
CATALOG10.SCHEME10.TABLE100.column2
CATALOG10.SCHEME10.TABLE100.column3
And when the user types and want suggestions he would get a nice list.
Example: I trype "CATALOG10.SCHEME10." then i request autocomplete and
it would return the tables in the specified scheme.
Tnx
I would build an api reference as a string:
CATALOG1.SCHEME1.TABLE1.column1
CATALOG1.SCHEME1.TABLE1.column2
CATALOG1.SCHEME1.TABLE1.column3
..
..
CATALOG10.SCHEME10.TABLE100.column1
CATALOG10.SCHEME10.TABLE100.column2
CATALOG10.SCHEME10.TABLE100.column3
And when the user types and want suggestions he would get a nice list.
Example: I trype "CATALOG10.SCHEME10." then i request autocomplete and
it would return the tables in the specified scheme.
Tnx