Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Free Pascal
»
Database
(Moderators:
FPK
,
Tomas Hajny
) »
filtered dbgrid
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
WIKI Timeout issues
Please read here if you have trouble connecting to the wiki
Recent
The issue of the scroll b...
by
jianwt
[
Today
at 03:35:22 am]
How can I uninstall the p...
by
xiyi0616
[
Today
at 02:58:30 am]
Does anyone have experien...
by
xiyi0616
[
Today
at 02:31:06 am]
Youtube Downloader in Pas...
by
yus
[
Today
at 01:40:58 am]
Debugger regression in La...
by
TheMouseAUS
[
Today
at 01:26:53 am]
Lazarus & FPC documentati...
by
wp
[
Today
at 01:26:50 am]
Not happy with TTimeEdit
by
gues1
[July 16, 2025, 10:58:04 pm]
THUMBBUTTON does not work...
by
ASerge
[July 16, 2025, 09:22:18 pm]
Lazarus Release 4.0
by
ManoelJr
[July 16, 2025, 08:35:45 pm]
fpc in [home] folder not ...
by
DonAlfredo
[July 16, 2025, 08:32:39 pm]
Debugger use on OBJECT ty...
by
Martin_fr
[July 16, 2025, 08:16:43 pm]
RuntimeError 103 File not...
by
gues1
[July 16, 2025, 07:51:44 pm]
Asking for an example of ...
by
Thaddy
[July 16, 2025, 07:33:15 pm]
Why does $fpctarget not w...
by
n7800
[July 16, 2025, 07:13:24 pm]
Suddenly a build error? [...
by
TBMan
[July 16, 2025, 07:04:45 pm]
Is Lazarus still serious ...
by
Thaddy
[July 16, 2025, 05:10:53 pm]
TMemoryStream Question wi...
by
Thaddy
[July 16, 2025, 03:57:33 pm]
Problems with libraries f...
by
DonAlfredo
[July 16, 2025, 03:03:27 pm]
Possible Bug or Known Beh...
by
Aruna
[July 16, 2025, 02:48:41 pm]
It does not show my progr...
by
RayoGlauco
[July 16, 2025, 02:48:05 pm]
activex.pp DosDateTimeToV...
by
440bx
[July 16, 2025, 02:09:39 pm]
"Mario & Luigi" (1994-200...
by
Nimbus
[July 16, 2025, 12:14:31 pm]
UTF8 Keyboard entry
by
Thaddy
[July 16, 2025, 06:17:25 am]
Will there be a freezing ...
by
xiyi0616
[July 16, 2025, 04:25:25 am]
GitHub action setup-lazar...
by
Gustavo 'Gus' Carreno
[July 16, 2025, 01:03:07 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: filtered dbgrid (Read 4379 times)
cryptid
Newbie
Posts: 3
filtered dbgrid
«
on:
April 01, 2021, 11:23:41 am »
filter db grid not work
procedure TForm1.Edit1Change(Sender: TObject);
begin
SQLQuery1.Filtered:=False;
SQLQuery1.Filter:='name' + 'LIKE' + QuotedStr(Edit1.Text );
SQLQuery1.Filtered:=True;
end;
Logged
wp
Hero Member
Posts: 12914
Re: filtered dbgrid
«
Reply #1 on:
April 01, 2021, 11:49:19 am »
Without spaces around 'LIKE' the three parts in your filter text, 'name', 'LIKE', condition, will not be separate words.
Logged
Joek
New Member
Posts: 27
Re: filtered dbgrid
«
Reply #2 on:
April 02, 2021, 05:26:18 pm »
A small example: this works for me with LIKE ...
Code: Pascal
[Select]
[+]
[-]
procedure
TFOhlaseni
.
FilterKodChange
(
Sender
:
TObject
)
;
var
sImput
:
string
;
begin
sImput
:
=
FilterKod
.
Text
;
DMOhlaseni
.
DSIBOhlaseni
.
Filtered
:
=
false
;
DMOhlaseni
.
DSIBOhlaseni
.
Filter
:
=
'KOD_OHLASENI LIKE '
+
QuotedStr
(
sImput
+
'%'
)
;
DMOhlaseni
.
DSIBOhlaseni
.
Filtered
:
=
true
;
end
;
Logged
flori
Full Member
Posts: 196
Re: filtered dbgrid
«
Reply #3 on:
April 07, 2021, 02:58:22 pm »
Code: Pascal
[Select]
[+]
[-]
SQLQuery1
.
Active
:
=
false
;
SQLQuery1
.
SQL
.
Clear
;
SQLQuery1
.
SQL
.
Append
(
'select * from log WHERE user LIKE '
''
+
edit1
.
Text
+
'%'
''
)
;
SQLQuery1
.
Active
:
=
true
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Free Pascal
»
Database
(Moderators:
FPK
,
Tomas Hajny
) »
filtered dbgrid
TinyPortal
© 2005-2018