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
Unknown Identifier Search
by
Tony Stone
[
Today
at 02:03:44 pm]
Feature Request: `View Pr...
by
Tony Stone
[
Today
at 12:52:11 pm]
Cannot read excel 2 file
by
bpranoto
[
Today
at 12:50:13 pm]
An ASCII logo for Pascal ...
by
Roland57
[
Today
at 12:24:36 pm]
Using FPC domain for Gitl...
by
marcov
[
Today
at 11:59:16 am]
Optimization of for loops...
by
lagprogramming
[
Today
at 11:57:38 am]
Crear dll en lazarus para...
by
Oscar82
[
Today
at 11:42:31 am]
possible fpc bug
by
MathMan
[
Today
at 11:25:35 am]
maximum number of paramet...
by
tt
[
Today
at 11:04:51 am]
TChart: +32% Processor lo...
by
Thaddy
[
Today
at 08:46:13 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] Adding and editing (Read 285 times)
Pe3s
Sr. Member
Posts: 367
[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: 621
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: 367
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: 621
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: 367
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