Tagged Questions

6
votes
8answers
3k views

Why the Excess Memory for Strings in Delphi?

I'm reading in a large text file with 1.4 million lines that is 24 MB in size (average 17 characters a line). I'm using Delphi 2009 and the file is ANSI but gets converted to Unicode upon reading, so ...
3
votes
3answers
203 views

How do i construct a WideString with a diacratic in a non-unicode Delphi version?

i am trying to construct a (test) WideString of: รก (U+00E1 Small Letter Latin A with acute) but using it's decomposed form: LATIN SMALL LETTER A (U+0061) COMBINING ACUTE ACCENT (U+0301) ...
3
votes
3answers
2k views

Storing UTF8 string in a UnicodeString

In Delphi 2007 you can store a UTF8 string in a WideString and then pass that onto a Win32 function, e.g. var UnicodeStr: WideString; UTF8Str: WideString; begin UnicodeStr:='some unicode text'; ...
2
votes
1answer
971 views

'Malformed string' exception when inserting into Firebird (Delphi, UniDAC, UniSQL, INSERT, parameters)

Using Delphi 2010, UniDAC components, Firebird 2.5 SuperServer. Database character set is ISO_8559_1 (my Windows default). I am writing a data transfer application to transfer data from an Access ...
1
vote
2answers
509 views

How can I make fixed-length Delphi strings use wide characters?

Under Delphi 2010 (and probably under D2009 also) the default string type is UnicodeString. However if we declare... const s :string = 'Test'; ss :string[4] = 'Test'; ... then the first string ...
1
vote
2answers
755 views

Converting a null-terminated memory stream to unicode string

In Delphi XE, I am capturing CF_UNICODETEXT data from the clipboard. The result is a stream that terminates with two null bytes. To get the actual string that was copied to clipboard, I need to strip ...
1
vote
2answers
2k views

Converting UnicodeString to PAnsiChar in Delphi XE

In Delphi XE I am using the BASS audio library, which contains this function: function BASS_StreamCreateURL(url: PAnsiChar; offset: DWORD; flags: DWORD; proc: DOWNLOADPROC; user: ...
1
vote
3answers
1k views

What is Causing This Memory Leak in Delphi?

I just can't figure out this memory leak that EurekaLog is reporting for my program. I'm using Delphi 2009. Here it is: Memory Leak: Type=Data; Total size=26; Count=1; The stack is: System.pas ...
0
votes
2answers
136 views

Compatibility of a TStringList backup from old to newest versions

I have a backup system which uses a TStringList, but I code with an old Delphi (Ansi strings). Basically I have this when I save: ... MyStringList.SaveToStream(Str); StrSz := Str.Size; ...