QBE - Query by example tools

Does anyone know of any good (free) QBE tools that can be integrated into a c# application.

Answer this question

QBE - Query by example tools

  • danielda

    Can you explain your problem to use please What is your situation and what do you need

  • CodeHaxor

    I would like to implement a QBE type interface in an application I'm currently creating for a client of mine. The client has been using the access QBE interface so if anyone knows of any QBE type tools similar to that, please let me know

    Regards,


  • Patrick Sears

    I dont really understand your environment and problem. If the information/data is stored in a Database, you can use expressions in the select queries to get a QBE result, for example:


    SELECT * FROM Documents WHERE title LIKE "%.NET%"

    Or when it is stored in Html documents for example you can use Xpath expressions to search trought documents and when it is plain text you can use Regex. There are so much options, but I there is no out-of-the-box solution like in ColdFusion for example that offers a full Verity Collections. But even there you need to generate your own expressions.



  • QBE - Query by example tools