Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Databases
»
[SOLVED] Adding and editing
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
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
OnKeyUp error sound
by
KodeZwerg
[
Today
at 12:53:13 pm]
Type checking of units of...
by
circular
[
Today
at 12:51:57 pm]
is there an internet conn...
by
Thaddy
[
Today
at 12:50:29 pm]
"TestAll" project issues
by
JuhaManninen
[
Today
at 12:46:01 pm]
[Solved] Initialization s...
by
petevick
[
Today
at 12:20:48 pm]
VST summation time bugs
by
dseligo
[
Today
at 12:11:02 pm]
tvPlanit - how to presele...
by
wp
[
Today
at 11:54:40 am]
more UTF8 confusing
by
JuhaManninen
[
Today
at 11:28:56 am]
ScroogeXHTML 8.3 - RTF to...
by
mjustin
[
Today
at 11:09:13 am]
DatePointHintTool - inval...
by
Nicole
[
Today
at 11:08:53 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] Adding and editing (Read 249 times)
Pe3s
Sr. Member
Posts: 330
[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: 556
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: 330
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: 556
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: 330
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