Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Databases
»
[SOLVED] SQLite Sum()
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
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Changes in "Search Result...
by
BrunoK
[
Today
at 12:22:16 pm]
Online Package Manager
by
GetMem
[
Today
at 10:34:41 am]
fphttpclient. set path op...
by
Warfley
[
Today
at 10:16:02 am]
Fill dual brush color in ...
by
wp
[
Today
at 09:16:35 am]
Feature announcement: Fun...
by
Peter H
[
Today
at 09:09:31 am]
Cration of TShape causes ...
by
bruce.button
[
Today
at 08:13:52 am]
Something wrong when i cl...
by
TRon
[
Today
at 08:04:59 am]
Force Picklist in TString...
by
bruce.button
[
Today
at 07:43:21 am]
How to download a file fr...
by
jmpessoa
[
Today
at 05:19:04 am]
IInterface issues, compil...
by
jamie
[
Today
at 01:26:31 am]
Problm with desiger recog...
by
cdbc
[June 05, 2023, 11:54:42 pm]
How to make a T[Flow]Pane...
by
jamie
[June 05, 2023, 11:12:11 pm]
Order of execution of ini...
by
jwdietrich
[June 05, 2023, 10:53:48 pm]
(Solved) Hex2Dec, strange...
by
PascalDragon
[June 05, 2023, 09:43:52 pm]
bug in FpWait?
by
PascalDragon
[June 05, 2023, 09:30:19 pm]
Does FPC uses any interme...
by
PascalDragon
[June 05, 2023, 09:21:00 pm]
DBGrid icon
by
dsiders
[June 05, 2023, 09:04:53 pm]
Getting Started
by
delphius
[June 05, 2023, 08:58:08 pm]
Highlighting row in TSTri...
by
bruce.button
[June 05, 2023, 08:18:25 pm]
Best way to include lots ...
by
440bx
[June 05, 2023, 08:04:27 pm]
Access violation with use...
by
Martin_fr
[June 05, 2023, 06:06:51 pm]
[SOLVED] discarding an ar...
by
robert rozee
[June 05, 2023, 05:25:52 pm]
The form designer works i...
by
JuhaManninen
[June 05, 2023, 04:23:31 pm]
IDE shows wrong Error Mes...
by
Hartmut
[June 05, 2023, 03:42:19 pm]
Any way to intercept stdo...
by
rishav
[June 05, 2023, 03:13:23 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] SQLite Sum() (Read 507 times)
Pe3s
Sr. Member
Posts: 417
[SOLVED] SQLite Sum()
«
on:
November 23, 2022, 05:48:04 pm »
Hello, I have a question if it is possible to display the result of the summation in a control other than dbgrid?
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
Button10Click
(
Sender
:
TObject
)
;
begin
ZQuery1
.
SQL
.
Clear
;
ZQuery1
.
SQL
.
Text
:
=
'SELECT SUM(amount) FROM product'
;
ZQuery1
.
Open
;
end
;
«
Last Edit: November 24, 2022, 04:28:29 pm by Pe3s
»
Logged
Thaddy
Hero Member
Posts: 12976
Re: SQLite Sum()
«
Reply #1 on:
November 23, 2022, 06:39:24 pm »
In any text based control, like a memo or even a caption.
(And plz do not use Zeos, use what Freepascal has a default. Zeos is a pain debugging and never has been fit for purpose)
«
Last Edit: November 23, 2022, 06:48:23 pm by Thaddy
»
Logged
I actually get compliments for being rude... (well, Dutch, but that is the same)
Pe3s
Sr. Member
Posts: 417
Re: SQLite Sum()
«
Reply #2 on:
November 23, 2022, 07:17:16 pm »
But when I execute this code it still displays in dbgrid
Logged
Pe3s
Sr. Member
Posts: 417
Re: SQLite Sum()
«
Reply #3 on:
November 23, 2022, 08:21:36 pm »
What do I need to change in the code to make it add up the time?
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
Button10Click
(
Sender
:
TObject
)
;
var
bm
:
TBookmark
;
Total
:
Integer
;
begin
bm
:
=
ZQuery1
.
GetBookmark
;
ZQuery1
.
DisableControls
;
try
Total
:
=
0
;
ZQuery1
.
First
;
while
not
ZQuery1
.
Eof
do
begin
Total
:
=
Total
+
ZQuery1
.
FieldByName
(
'Wiek'
)
.
AsInteger
;
ZQuery1
.
Next
;
end
;
Form1
.
Caption
:
=
IntToStr
(
Total
)
;
finally
ZQuery1
.
GotoBookmark
(
bm
)
;
ZQuery1
.
EnableControls
;
end
;
end
;
Logged
paweld
Hero Member
Posts: 677
Re: SQLite Sum()
«
Reply #4 on:
November 23, 2022, 09:09:24 pm »
This is probably because you are using a only one a TZQuery component in the application, which is connected to the grid via datasource.
Place another ZQuery component on the form, such as ZQuery2
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
Button10Click
(
Sender
:
TObject
)
;
begin
ZQuery2
.
SQL
.
Clear
;
ZQuery2
.
SQL
.
Text
:
=
'SELECT SUM(wiek) suma_lat FROM pracownik'
;
ZQuery2
.
Open
;
try
Form1
.
Caption
:
=
ZQuery2
.
FieldByName
(
'suma_lat'
)
.
AsString
;
finally
ZQuery2
.
Close
;
end
;
end
;
Logged
Best regards / Pozdrawiam
paweld
dseligo
Hero Member
Posts: 986
Re: SQLite Sum()
«
Reply #5 on:
November 23, 2022, 09:19:46 pm »
Quote from: paweld on November 23, 2022, 09:09:24 pm
Place another ZQuery component on the form, such as ZQuery2
And don't forget to connect it to ZConnection.
Oh, and Zeos works just fine.
Logged
Pe3s
Sr. Member
Posts: 417
Re: SQLite Sum()
«
Reply #6 on:
November 24, 2022, 04:28:15 pm »
Thank you
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Databases
»
[SOLVED] SQLite Sum()
TinyPortal
© 2005-2018