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
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Lazarus on the Mac in 202...
by
carl_caulkett
[
Today
at 06:31:54 pm]
Dark Mode on macOS 14.6.1...
by
carl_caulkett
[
Today
at 06:27:03 pm]
Beeping sound when cursor...
by
carl_caulkett
[
Today
at 06:20:10 pm]
Why renaming must be done...
by
wp
[
Today
at 06:07:00 pm]
order of evaluation of ov...
by
440bx
[
Today
at 06:01:40 pm]
Make mouse cursor bigger.
by
seghele0
[
Today
at 05:54:50 pm]
[SOLVED] Possible Bug in ...
by
Aruna
[
Today
at 05:43:11 pm]
Cannot rebuild Lazarus af...
by
carl_caulkett
[
Today
at 03:00:16 pm]
TListView.OnChange Event ...
by
msintle
[
Today
at 02:12:34 pm]
cors issue
by
Prakash
[
Today
at 01:06:58 pm]
Ouch: BioMorph Fractal (W...
by
Boleeman
[
Today
at 01:06:32 pm]
lazarus ide tstring list ...
by
paweld
[
Today
at 12:54:52 pm]
Lazarus Trunk won't insta...
by
madref
[
Today
at 12:00:20 pm]
What's wrong with TListBo...
by
jipété
[
Today
at 10:53:45 am]
Recursive Circles Type Fr...
by
Boleeman
[
Today
at 10:08:38 am]
Access MSSQL with Lazarus
by
luca
[
Today
at 09:55:00 am]
Little Red Riding Hood (t...
by
circular
[
Today
at 08:46:13 am]
Bitmap 16bit R5G6B5
by
circular
[
Today
at 08:43:34 am]
Toggle Form/Unit View by ...
by
Aruna
[
Today
at 02:21:42 am]
Dash documentation for La...
by
dbannon
[
Today
at 02:16:46 am]
[Solved] Rich Text Format...
by
dbannon
[
Today
at 02:04:29 am]
LazTTF2Vector - An Enhanc...
by
maurog
[
Today
at 12:49:07 am]
[SOLVED] Copy the content...
by
PascalDragon
[September 19, 2024, 09:48:10 pm]
Trying to show compile ti...
by
QEnnay
[September 19, 2024, 09:38:24 pm]
Compiler error when check...
by
PascalDragon
[September 19, 2024, 09:37:17 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [Solved] SaveToFile with TMemoryStream (Read 827 times)
jcmontherock
Sr. Member
Posts: 263
[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 3.4-64 - FPC 3.2.2
Fibonacci
Sr. Member
Posts: 453
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: 263
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 3.4-64 - FPC 3.2.2
Fibonacci
Sr. Member
Posts: 453
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