Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Databases
»
[SOLVED] Adding and editing
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
Patch for fixing a TextOu...
by
Bart
[
Today
at 03:02:12 pm]
SQL - looks easy but I ca...
by
Zvoni
[
Today
at 02:55:17 pm]
An ASCII logo for Pascal ...
by
Fred vS
[
Today
at 02:43:05 pm]
Lazarus visual components
by
Onur2x
[
Today
at 02:06:37 pm]
CompareText improvement
by
marcov
[
Today
at 01:57:28 pm]
FPSpreadsheet, read numbe...
by
wp
[
Today
at 01:22:09 pm]
Beginners ask the questio...
by
Bart
[
Today
at 12:01:15 pm]
class function TCDWSButto...
by
Bart
[
Today
at 11:59:12 am]
Any change to synapse - H...
by
egsuh
[
Today
at 11:39:13 am]
Get notified when monitor...
by
mikerabat
[
Today
at 10:58:12 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] Adding and editing (Read 287 times)
Pe3s
Sr. Member
Posts: 376
[SOLVED] Adding and editing
«
on:
November 26, 2022, 06:33:39 pm »
Hello, I wrote this code, how to correct the iID code to Integer variable or stay with the String variable?
Button Add
Code: Pascal
[Select]
[+]
[-]
procedure
TfGlowna
.
SpeedButton4Click
(
Sender
:
TObject
)
;
begin
fMiesiac
.
iID
:
=
''
;
fMiesiac
.
ShowModal
;
end
;
Button edit
Code: Pascal
[Select]
[+]
[-]
procedure
TfGlowna
.
SpeedButton5Click
(
Sender
:
TObject
)
;
begin
fMiesiac
.
iID
:
=
IntToStr
(
ZQuery1
.
FieldByName
(
'MiesiacID'
)
.
AsInteger
)
;
fMiesiac
.
ComboBox1
.
Text
:
=
ZQuery1
.
FieldByName
(
'Miesiac'
)
.
AsString
;
fMiesiac
.
ShowModal
;
end
;
Form Add & edit
Code: Pascal
[Select]
[+]
[-]
unit
Unit2
;
{$mode ObjFPC}{$H+}
interface
uses
Classes
,
SysUtils
,
Forms
,
Controls
,
Graphics
,
Dialogs
,
StdCtrls
,
Buttons
;
type
{ TfMiesiac }
TfMiesiac
=
class
(
TForm
)
BitBtn1
:
TBitBtn
;
BitBtn2
:
TBitBtn
;
ComboBox1
:
TComboBox
;
Label1
:
TLabel
;
procedure
BitBtn1Click
(
Sender
:
TObject
)
;
private
public
iID
:
String
;
end
;
var
fMiesiac
:
TfMiesiac
;
implementation
uses
Unit1
;
{$R *.lfm}
{ TfMiesiac }
procedure
TfMiesiac
.
BitBtn1Click
(
Sender
:
TObject
)
;
var
myID
:
Integer
;
begin
if
iID
=
''
then
begin
fGlowna
.
ZQuery1
.
Close
;
fGlowna
.
ZQuery1
.
SQL
.
Clear
;
fGlowna
.
ZQuery1
.
SQL
.
Text
:
=
'INSERT INTO miesiac(Miesiac) values(:Miesiac)'
;
fGlowna
.
ZQuery1
.
ParamByName
(
'Miesiac'
)
.
AsString
:
=
ComboBox1
.
Items
[
ComboBox1
.
ItemIndex
]
;
end
else
begin
myID
:
=
fGlowna
.
ZQuery1
.
FieldByName
(
'MiesiacID'
)
.
AsInteger
;
fGlowna
.
ZQuery1
.
SQL
.
Clear
;
fGlowna
.
ZQuery1
.
SQL
.
Text
:
=
'UPDATE miesiac SET Miesiac=:Miesiac WHERE MiesiacID=:MiesiacID'
;
fGlowna
.
ZQuery1
.
ParamByName
(
'Miesiac'
)
.
AsString
:
=
ComboBox1
.
Items
[
ComboBox1
.
ItemIndex
]
;
fGlowna
.
ZQuery1
.
ParamByName
(
'MiesiacID'
)
.
AsInteger
:
=
myID
;
end
;
fGlowna
.
ZQuery1
.
ExecSQL
;
fGlowna
.
ZQuery1
.
Close
;
fGlowna
.
ZQuery1
.
SQL
.
Clear
;
fGlowna
.
ZQuery1
.
SQL
.
Text
:
=
'SELECT * FROM miesiac'
;
fGlowna
.
ZQuery1
.
Open
;
fGlowna
.
ZQuery1
.
Last
;
Self
.
Close
;
end
;
end
.
«
Last Edit: November 26, 2022, 08:47:49 pm by Pe3s
»
Logged
paweld
Hero Member
Posts: 627
Re: Adding and editing
«
Reply #1 on:
November 26, 2022, 07:53:30 pm »
Code: Pascal
[Select]
[+]
[-]
procedure
TfGlowna
.
SpeedButton4Click
(
Sender
:
TObject
)
;
//add
begin
fMiesiac
.
iID
:
=
0
;
fMiesiac
.
ShowModal
;
end
;
procedure
TfGlowna
.
SpeedButton5Click
(
Sender
:
TObject
)
;
//edit
begin
fMiesiac
.
iID
:
=
ZQuery1
.
FieldByName
(
'MiesiacID'
)
.
AsInteger
;
fMiesiac
.
ComboBox1
.
Text
:
=
ZQuery1
.
FieldByName
(
'Miesiac'
)
.
AsString
;
fMiesiac
.
ShowModal
;
end
;
Form2:
Code: Pascal
[Select]
[+]
[-]
unit
Unit2
;
{$mode ObjFPC}{$H+}
interface
uses
Classes
,
SysUtils
,
Forms
,
Controls
,
Graphics
,
Dialogs
,
StdCtrls
,
Buttons
;
type
{ TfMiesiac }
TfMiesiac
=
class
(
TForm
)
BitBtn1
:
TBitBtn
;
BitBtn2
:
TBitBtn
;
ComboBox1
:
TComboBox
;
Label1
:
TLabel
;
procedure
BitBtn1Click
(
Sender
:
TObject
)
;
private
public
iID
:
Integer
;
end
;
var
fMiesiac
:
TfMiesiac
;
implementation
uses
Unit1
;
{$R *.lfm}
{ TfMiesiac }
procedure
TfMiesiac
.
BitBtn1Click
(
Sender
:
TObject
)
;
begin
fGlowna
.
ZQuery2
.
SQL
.
Clear
;
if
iID <
1
then
//corrected typo
begin
fGlowna
.
ZQuery2
.
SQL
.
Text
:
=
'INSERT INTO miesiac(Miesiac) values(:Miesiac)'
;
end
else
begin
fGlowna
.
ZQuery2
.
SQL
.
Text
:
=
'UPDATE miesiac SET Miesiac=:Miesiac WHERE MiesiacID=:MiesiacID'
;
fGlowna
.
ZQuery2
.
ParamByName
(
'MiesiacID'
)
.
AsInteger
:
=
iID
;
end
;
fGlowna
.
ZQuery2
.
ParamByName
(
'Miesiac'
)
.
AsString
:
=
ComboBox1
.
Items
[
ComboBox1
.
ItemIndex
]
;
fGlowna
.
ZQuery2
.
ExecSQL
;
fGlowna
.
ZQuery1
.
Refresh
;
fGlowna
.
ZQuery1
.
Last
;
Self
.
Close
;
end
;
end
.
Don't be afraid to use more than one TZQuery component. You won't have to unnecessarily close and duplicate the same queries every time
«
Last Edit: November 26, 2022, 08:35:22 pm by paweld
»
Logged
Best regards / Pozdrawiam
paweld
Pe3s
Sr. Member
Posts: 376
Re: Adding and editing
«
Reply #2 on:
November 26, 2022, 08:26:46 pm »
The problem is that it does not add new records, only updates
Logged
paweld
Hero Member
Posts: 627
Re: Adding and editing
«
Reply #3 on:
November 26, 2022, 08:35:49 pm »
sorry for the typo. corrected previous post - form2, line 42.
Logged
Best regards / Pozdrawiam
paweld
Pe3s
Sr. Member
Posts: 376
Re: Adding and editing
«
Reply #4 on:
November 26, 2022, 08:47:36 pm »
@paweld, Thank you
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Databases
»
[SOLVED] Adding and editing
TinyPortal
© 2005-2018