$select in table
Scotte Meredith
spomacguy at gmail.com
Sat Mar 18 19:18:08 UTC 2023
> On Mar 18, 2023, at 11:52 AM, Daniel Sananes <daniel.s at kopparbergs.se> wrote:
>
> Hi all
> I am having problems understanding the $select.
> As I am using tables now I would like to override the table $select.
> I am constructing an order-window now and want to let user enter a part of a clients name to find the client.
> Begin text block
> Text: where client_name LIKE [clientname]
> End text block
> Get text block lQuery
> Do iclientrow.$select(lquery)
>
> The only thing that works is if I explicitly send "where client_id=1".
>
> Are there a kind soul out there who could give me an example how an overridden $select would look?
> As I don't know how the inbuilt $select looks I feel lost somehow.
>
> I guess there are joins and other useful stuff you could have in a $select-method
Always start with how the full SQL would look.
In your case:
SELECT * FROM client WHERE client_name LIKE '%somethinghere%'
The $select is the WHERE clause
So put this first:
Calculate clientname = con('%',clientname,'%')
Then:
where client_name like @[clientname]
Using the @ sign makes it a bind variable so the SQL DAM will put in the quotes or whatever is needed for the particular SQL field type. Also can make it more efficient and other things, but that's another story.
Also remember that the $select just sets the data set to use. Then you need to $fetch to get 1 at a time, or all at once or 100 at once or whatever you decide.
Scotte Meredith
spomacguy at gmail.com
509/998-0991
More information about the omnisdev-en
mailing list