Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Databases
»
Field of types ftString not persistent
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
XLibre, finally and fortu...
by
Thaddy
[
Today
at 05:57:47 am]
rotate image problem
by
speter
[
Today
at 05:34:29 am]
Lazarus Main and Gnome/Wa...
by
Jonax
[
Today
at 04:28:14 am]
I found an actual use for...
by
jamie
[
Today
at 02:02:42 am]
Pre-Pre-Announce: High Pe...
by
jbthiel
[
Today
at 01:26:24 am]
TstringGrid read cell col...
by
Josh
[June 08, 2026, 11:05:23 pm]
Can /my/ AI help me with ...
by
schuler
[June 08, 2026, 10:41:39 pm]
Pascal for AI Agent CLI T...
by
schuler
[June 08, 2026, 10:35:41 pm]
Knigo
by
Roland57
[June 08, 2026, 09:17:39 pm]
is there a Base 26 / Radi...
by
Josh
[June 08, 2026, 08:54:36 pm]
FPC Unleashed (inline var...
by
Fibonacci
[June 08, 2026, 08:49:31 pm]
[New Component] ExtTabCtr...
by
wp
[June 08, 2026, 08:10:11 pm]
AArch64. Fast method to c...
by
LemonParty
[June 08, 2026, 05:54:54 pm]
Notetask 1.1.4 - Free cro...
by
AlexanderT
[June 08, 2026, 04:55:38 pm]
Pixie: A lightweight HTML...
by
Tomxe
[June 08, 2026, 01:48:30 pm]
EasyLazFreeType Bug?
by
Tommi
[June 08, 2026, 10:57:47 am]
embed .jpg file into .pp ...
by
Thaddy
[June 08, 2026, 09:51:38 am]
Call SetLength from assem...
by
Thaddy
[June 08, 2026, 09:00:36 am]
TPlaysound problem Ubuntu...
by
jamie
[June 08, 2026, 12:57:32 am]
Portable verion of FPC an...
by
Martin_fr
[June 08, 2026, 12:26:26 am]
Release ray4laz 6.0
by
lazarusprogrammer
[June 07, 2026, 08:02:14 pm]
Where is Lazarus config
by
n7800
[June 07, 2026, 07:49:03 pm]
Auto-vectorization hint/w...
by
Ten_Mile_Hike
[June 07, 2026, 07:31:42 pm]
Splitting Picture into Qu...
by
Dzandaa
[June 07, 2026, 06:16:22 pm]
Lazarus 4.99 - New featur...
by
Martin_fr
[June 07, 2026, 05:46:05 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Field of types ftString not persistent (Read 2614 times)
matthijsj
Newbie
Posts: 3
Field of types ftString not persistent
«
on:
October 10, 2024, 09:43:37 am »
I have a form with a BufDataSet, a dbGrid and a datasource connecting them. When I try to enter data in a field of type ftString, the entered data is not persistent. The data is removed when I move to the next field. What do I do wrong?
Logged
matthijsj
Newbie
Posts: 3
Re: Field of types ftString not persistent
«
Reply #1 on:
October 16, 2024, 02:19:51 pm »
I entered the following code:
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
Button1Click
(
Sender
:
TObject
)
;
begin
BufDataset1
.
Insert
;
BufDataset1
.
FieldByName
(
'Number'
)
.
Value
:
=
1000
;
BufDataset1
.
FieldByName
(
'Naam'
)
.
Value
:
=
'EenWaarde'
;
BufDataset1
.
Post
;
end
;
However the field "Naam' does not save the data.
«
Last Edit: October 16, 2024, 03:22:35 pm by matthijsj
»
Logged
dseligo
Hero Member
Posts: 1686
Re: Field of types ftString not persistent
«
Reply #2 on:
October 16, 2024, 02:28:18 pm »
Post example project which shows your problem.
Also provide (
https://wiki.freepascal.org/Forum
):
- the name of your operating system
- the version of your operating system
- the version of your Free Pascal Compiler
- the version of your Lazarus IDE
Logged
Thaddy
Hero Member
Posts: 19250
Glad to be alive.
Re: Field of types ftString not persistent
«
Reply #3 on:
October 16, 2024, 02:36:48 pm »
Het naam veld moet een shortstring zijn. string[255]
The name field should be a shortstring type with a value to the maximum you expect.
Otherwise you store a pointer...
«
Last Edit: October 16, 2024, 02:38:26 pm by Thaddy
»
Logged
objects are fine constructs. You can even initialize them with constructors.
wp
Hero Member
Posts: 13552
Re: Field of types ftString not persistent
«
Reply #4 on:
October 16, 2024, 07:15:17 pm »
I don't see any problem with the code that you posted for TBufdataset. See attached sample project.
Logged
Zvoni
Hero Member
Posts: 3397
Re: Field of types ftString not persistent
«
Reply #5 on:
October 17, 2024, 08:18:40 am »
And shouldn't he use "AsInteger", "AsString" instead of "Value"?
Logged
One System to rule them all, One Code to find them,
One IDE to bring them all, and to the Framework bind them,
in the Land of Redmond, where the Windows lie
---------------------------------------------------------------------
Code is like a joke: If you have to explain it, it's bad
rvk
Hero Member
Posts: 7042
Re: Field of types ftString not persistent
«
Reply #6 on:
October 17, 2024, 09:34:21 am »
Quote from: Zvoni on October 17, 2024, 08:18:40 am
And shouldn't he use "AsInteger", "AsString" instead of "Value"?
Value is a variant, so it will accept a string and convert it back to the correct fieldtype.
But we haven't seen anything of the rest of the code and defined fields.
(Although pushing a string into a ftInteger field via a variant will result in an exception.)
Logged
matthijsj
Newbie
Posts: 3
Re: Field of types ftString not persistent
«
Reply #7 on:
October 19, 2024, 03:51:24 pm »
Size should be given when fieldtype is ftString.
Logged
Richard Marriott
New Member
Posts: 14
Re: Field of types ftString not persistent
«
Reply #8 on:
December 16, 2024, 07:20:11 am »
I assume you set up the table in the IDE, so go back to the field definitions property and make sure that the definition for 'Namm" contains a size parameter (as matthijsj suggests).
The other suggestions should all work. Value is a variant that contents the input to the field definition type. The only other thing I can think of is to try 'Append" rather than "Insert" in your code.
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Databases
»
Field of types ftString not persistent
TinyPortal
© 2005-2018