Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Free Pascal
»
General
(Moderators:
FPK
,
Tomas Hajny
) »
[Solved] SaveToFile with TMemoryStream
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
We are starting to use La...
by
dbannon
[
Today
at 01:50:02 am]
[ANN] fpGUI Toolkit v2.0....
by
Graeme
[
Today
at 01:43:31 am]
Frustrating Error When us...
by
TYDQ
[
Today
at 01:38:26 am]
Fast Canvas Library V1.05...
by
backprop
[
Today
at 01:32:51 am]
fpGUI Toolkit v2.0.1 has ...
by
Graeme
[
Today
at 01:14:03 am]
; after then
by
Martin_fr
[
Today
at 12:38:46 am]
Are the source files for ...
by
Martin_fr
[
Today
at 12:26:57 am]
Debian removes FPC/Lazaru...
by
kupferstecher
[February 13, 2026, 10:29:53 pm]
AVRPascal – free code edi...
by
ackarwow
[February 13, 2026, 10:08:59 pm]
Select rectangle of the i...
by
backprop
[February 13, 2026, 08:16:27 pm]
How to determine the unkn...
by
LV
[February 13, 2026, 07:37:32 pm]
how to enable multihelper...
by
mas steindorff
[February 13, 2026, 07:03:20 pm]
Lazarus/FreePascal Bug
by
Bart
[February 13, 2026, 06:27:28 pm]
Questions from a Windows ...
by
CM630
[February 13, 2026, 06:15:33 pm]
Duplicated icon in the Wi...
by
w click
[February 13, 2026, 05:47:49 pm]
The Future of FPC
by
440bx
[February 13, 2026, 04:29:34 pm]
ThorVG - test (lightweigh...
by
LeP
[February 13, 2026, 03:07:25 pm]
AdvancedHTTPServer: A Go-...
by
LeP
[February 13, 2026, 03:01:15 pm]
Status of FPC 3.4.0 or FP...
by
gidesa
[February 13, 2026, 12:35:41 pm]
Notetask 1.1.1 - Free cro...
by
AlexanderT
[February 13, 2026, 12:00:08 pm]
Bee Hive solitaire
by
TBMan
[February 13, 2026, 03:22:09 am]
AI Created Music
by
Tony Stone
[February 13, 2026, 03:02:08 am]
Send form to true left an...
by
mas steindorff
[February 13, 2026, 02:39:34 am]
Help needed compiling
by
jamie
[February 13, 2026, 02:33:02 am]
Free Pascal for a small e...
by
dbannon
[February 13, 2026, 02:24:49 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [Solved] SaveToFile with TMemoryStream (Read 1506 times)
jcmontherock
Sr. Member
Posts: 336
[Solved] SaveToFile with TMemoryStream
«
on:
June 15, 2024, 05:59:30 pm »
I wanted to export a MySQL table to SQL. This table contains about 500.000 rows. I tried avoiding problems with that number of rows. I created an AnsiString time to time each 2000 rows. It works fine except that at each beginning of string I get in the file some binary characters. The code is very simple:
Code: Pascal
[Select]
[+]
[-]
// aStr is defined as AnsiString
procedure
TForm1
.
FormShow
(
Sender
:
TObject
)
;
begin
MStr
:
=
TMemoryStream
.
Create
;
MStr
.
Position
:
=
0
;
aStr
:
=
'-- '
+
nl
;
aStr
+=
'SET SQL_MODE='
'NO_AUTO_VALUE_ON_ZERO'
';'
+
nl
;;
aStr
+=
'-- SET AUTOCOMMIT = 0;'
+
nl
;
aStr
+=
'-- START TRANSACTION;'
+
nl
;;
aStr
+=
'-- SET time_zone = "+00:00";'
+
nl
;
aStr
+=
''
;
aStr
+=
'-- ---------------------------------------------------'
+
nl
;
aStr
+=
'-- '
+
nl
;
aStr
+=
'-- File encoding is UTF8 '
+
nl
;
aStr
+=
'set character set utf8;'
+
nl
;
aStr
+=
'-- ---------------------------------------------------'
+
nl
;
aStr
+=
'-- '
+
nl
;
MStr
.
WriteAnsiString
(
aStr
)
;
MStr
.
Position
:
=
0
;
MStr
.
SaveToFile
(
'aStrFile.sql'
)
;
MStr
.
Free
;
the file begins with 4 binary bytes. In that ex: 29010000. How to avoid such insertion at each WriteAnsiString ?
«
Last Edit: June 16, 2024, 11:03:52 am by jcmontherock
»
Logged
Windows 11 UTF8-64 - Lazarus 4.4-64 - FPC 3.2.2
Fibonacci
Hero Member
Posts: 788
Internal Error Hunter
Re: SaveToFile with TMemoryStream
«
Reply #1 on:
June 15, 2024, 06:10:13 pm »
WriteAnsiString
writes the length of the string at the beginning, use
Write
or
WriteBuffer
Logged
jcmontherock
Sr. Member
Posts: 336
Re: SaveToFile with TMemoryStream
«
Reply #2 on:
June 15, 2024, 06:20:41 pm »
Thanks a lot. I changed: "MStr.WriteAnsiString(aStr);" to "MStr.WriteBuffer(aStr[1], Length(aStr));" and it works. In which situations do you use "WriteAnsiString" ?
«
Last Edit: June 15, 2024, 06:23:14 pm by jcmontherock
»
Logged
Windows 11 UTF8-64 - Lazarus 4.4-64 - FPC 3.2.2
Fibonacci
Hero Member
Posts: 788
Internal Error Hunter
Re: SaveToFile with TMemoryStream
«
Reply #3 on:
June 15, 2024, 06:28:10 pm »
Quote from: jcmontherock on June 15, 2024, 06:20:41 pm
In which situations do you use "WriteAnsiString" ?
For example, if you want to save few strings to be read later, like a config file, so later on each call to ReadAnsiString you get next string
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Free Pascal
»
General
(Moderators:
FPK
,
Tomas Hajny
) »
[Solved] SaveToFile with TMemoryStream
TinyPortal
© 2005-2018