Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Databases
»
(SOLVED) DBF add fields into existing table
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
Recent
debugger error
by
Martin_fr
[
Today
at 10:38:42 pm]
TCHATGPT — An Artificial ...
by
schuler
[
Today
at 10:00:48 pm]
Which quantized model wor...
by
schuler
[
Today
at 09:45:50 pm]
Putting a new file on a w...
by
Roland57
[
Today
at 09:07:00 pm]
Slow app start on M5 MacB...
by
Thaddy
[
Today
at 08:16:52 pm]
Peculiarities in the EXE ...
by
Thaddy
[
Today
at 07:49:45 pm]
FPC Unleashed (async/awai...
by
Thaddy
[
Today
at 06:52:05 pm]
Windows 2026_7 update and...
by
Martin_fr
[
Today
at 06:23:32 pm]
KOL4 Beta available.
by
Thaddy
[
Today
at 06:23:08 pm]
This week in OPM!
by
wp
[
Today
at 01:59:33 pm]
FastCGI vs. CGI
by
Thaddy
[
Today
at 01:32:45 pm]
Testing Antropic
by
Tomxe
[
Today
at 12:46:14 pm]
GTK3 is now the default w...
by
Thaddy
[
Today
at 10:22:34 am]
authentiacte through goog...
by
Thaddy
[
Today
at 09:12:56 am]
[SOLVED] Stopped compilin...
by
CM630
[
Today
at 08:41:58 am]
[CLOSED] Seeking performa...
by
Xenno
[
Today
at 08:11:26 am]
Lazarus Main not building...
by
Thaddy
[
Today
at 06:31:42 am]
Setting the CURSOR for th...
by
jamie
[
Today
at 02:16:55 am]
TPeriodicTable
by
wp
[
Today
at 12:19:25 am]
I have made some progress...
by
onionmixer
[July 17, 2026, 08:08:34 pm]
How to connect to MariaDb...
by
jcmontherock
[July 17, 2026, 06:23:38 pm]
Accessing VRAM memory wit...
by
LemonParty
[July 17, 2026, 04:45:30 pm]
docking IDE
by
Martin_fr
[July 17, 2026, 02:13:28 pm]
Engineering Software from...
by
jamie
[July 17, 2026, 12:51:57 pm]
[SOLVED] BitBtn Oddity
by
Petrus Vorster
[July 17, 2026, 09:05:55 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: (SOLVED) DBF add fields into existing table (Read 3527 times)
xinyiman
Hero Member
Posts: 2261
(SOLVED) DBF add fields into existing table
«
on:
February 13, 2019, 11:37:18 am »
Hi I want to add a column to my existing table in a dbf file. What am I doing wrong?
Code: Pascal
[Select]
[+]
[-]
var
MyDBF
:
TDBF
;
dbDefs
:
TDbfFieldDefs
;
begin
MyDBF
:
=
TDBF
.
Create
(
nil
)
;
MyDBF
.
FilePath
:
=
Self
.
PAthDBF
;
MyDBF
.
TableName
:
=
Self
.
TableNameDBF
;
if
MyDBF
.
FindField
(
'ELAB'
)
=
nil
then
begin
// create new field list
MyDBF
.
Exclusive
:
=
True
;
dbDefs
:
=
TDbfFieldDefs
.
Create
(
nil
)
;
try
dbDefs
.
Assign
(
MyDBF
.
DbfFieldDefs
)
;
dbDefs
.
Add
(
'ELAB'
,
ftString
,
1
)
;
MyDBF
.
RestructureTable
(
dbDefs
,
true
)
;
finally
dbDefs
.
Free
;
end
;
end
;
MyDBF
.
Open
;
MyDBF
.
Close
;
«
Last Edit: February 14, 2019, 08:40:41 am by xinyiman
»
Logged
Win10, Ubuntu and Mac
Lazarus: 2.1.0
FPC: 3.3.1
Handoko
Hero Member
Posts: 5558
My goal: build my own game engine using Lazarus
Re: DBF add fields into existing table
«
Reply #1 on:
February 13, 2019, 12:22:49 pm »
I have code to add dbf column. I copy/paste and modify a bit to suit your case:
Code: Pascal
[Select]
[+]
[-]
function
FieldIndex
(
aDBF
:
TDBF
;
const
strField
:
string
)
:
Integer
;
var
i
:
Integer
;
begin
Result
:
=
-
1
;
for
i
:
=
0
to
(
aDBF
.
DbfFieldDefs
.
Count
-
1
)
do
if
(
aDBF
.
DbfFieldDefs
.
Items
[
i
]
.
FieldName
=
strField
)
then
begin
Result
:
=
i
;
Exit
;
end
;
end
;
//...
var
MyDBF
:
TDBF
;
dbDefs
:
TDbfFieldDefs
;
dbDef
:
TDbfFieldDef
;
isNew
:
Boolean
;
begin
MyDBF
:
=
TDBF
.
Create
(
nil
)
;
MyDBF
.
FilePath
:
=
'the_path_to_the_location'
;
MyDBF
.
TableName
:
=
'the_file_name'
;
MyDBF
.
Open
;
dbDefs
:
=
TDbfFieldDefs
.
Create
(
nil
)
;
dbDefs
.
Assign
(
MyDBF
.
DbfFieldDefs
)
;
isNew
:
=
False
;
if
FieldIndex
(
'ELAB'
)
<
0
then
begin
isNew
:
=
True
;
dbDef
:
=
dbDefs
.
AddFieldDef
;
dbDef
.
FieldName
:
=
'ELAB'
;
dbDef
.
Type
:
=
ftString
;
dbDef
.
Size
:
=
1
;
dbDef
.
Required
:
=
False
;
end
;
MyDBF
.
Close
;
if
isNew
then
MyDBF
.
RestructureTable
(
dbDefs
,
True
)
;
dbDefs
.
Free
;
MyDBF
.
Free
end
;
«
Last Edit: February 13, 2019, 12:36:02 pm by Handoko
»
Logged
xinyiman
Hero Member
Posts: 2261
Re: DBF add fields into existing table
«
Reply #2 on:
February 14, 2019, 08:40:29 am »
I replace
dbDef.Type := ftString;
with
dbDef.FieldType := ftString;
But run correctly. Thank you very much.
Logged
Win10, Ubuntu and Mac
Lazarus: 2.1.0
FPC: 3.3.1
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Databases
»
(SOLVED) DBF add fields into existing table
TinyPortal
© 2005-2018