Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Scout/Concepts/Sql Lookup Service

< Scout‎ | Concepts
Revision as of 18:36, 21 March 2011 by Dev.jmini.fr (Talk | contribs) (Properties)

The Scout documentation has been moved to https://eclipsescout.github.io/.

A SQL lookup Service is a specific type of The Scout documentation has been moved to https://eclipsescout.github.io/. that works with a database.


Description

A SQL lookup Service provide a way to implement a The Scout documentation has been moved to https://eclipsescout.github.io/. that is very efficient to configured, if the The Scout documentation has been moved to https://eclipsescout.github.io/. is resolved with a database.

Instead of implementing the 4 methods (getDataByKey(LookupCall call), getDataByText(LookupCall call), getDataByAll(LookupCall call), getDataByRec(LookupCall call)), it is possible to defined the behavior of the lookup service with some configuration properties and events.


Properties

Defined with The Scout documentation has been moved to https://eclipsescout.github.io/. methods.

The Scout documentation has been moved to https://eclipsescout.github.io/.

Note.png
TODO
SqlSelect: what should be the result


Possibility to use some special tags:

  • key
  • text
  • all
  • rec

Depending on the function that is called (by key, by text, by all, by rec) only the portion of the SQL query beetween the corresponding tag is keept.

The getDataByKey(LookupCall call) is attached to the query as binding. Therefore all getters on the call, are available in the query.

SELECT language_id, name, NULL, NULL, NULL, NULL, NULL, 1, NULL, 1 
FROM LANGUAGE
<key>WHERE language_id = :key</key>
<text>WHERE UPPER(name) LIKE UPPER('%'||:text||'%')</text>


The Scout documentation has been moved to https://eclipsescout.github.io/.

Note.png
TODO
TODO: SortColumn


Events

Defined with The Scout documentation has been moved to https://eclipsescout.github.io/. methods.

Template:ScoutEvt

Note.png
TODO
TODO: LoadLookupRows


See Also

Back to the top