Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6569379
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T14:37:10+00:00 2026-05-25T14:37:10+00:00

I need store a variant value (which always return a string) in a PChar

  • 0

I need store a variant value (which always return a string) in a PChar variable now i’m using this code

procedure VariantToPChar(v:variant; p : PChar);
Var
  s : String;      
begin
  s:=v;
  GetMem(p,Length(s)*Sizeof(Char));
  StrCopy(p, PChar(s));
end;

But i’m wondering if exist a better way

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T14:37:11+00:00Added an answer on May 25, 2026 at 2:37 pm

    Update: You really shouldn’t do this or use this code as you’re likely to encourage people to write code that leaks. People will call this and fail to free the memory since they don’t know that this function allocates memory.

    If you want to store something in a PChar size buffer, and have that value still be associated with p (the pointer p is modified and is different when you return from the procedure), then you need to make the parameter a var (by-reference instead of by-value) parameter like this:

    procedure AllocPCharBufFromVariant(v:variant; var p : PChar);
    Var
      s : String;      
    begin
      try
        s:=v;
        GetMem(p,(Length(s)+1)*Sizeof(Char)); // fixed to add 1 for the nul
        StrCopy(p, PChar(s));
      except
        on E:EVariantError do 
        begin
         p := nil;
        end;
      end;
    end;
    

    I have also shown above handling EVariantError, which I have chosen to handle by returning nil in the p parameter, but you should think about how you want it to work, and then deal with it somehow.

    The above code also leaks memory which is awful, so I renamed it AllocPChar. It seems like your original code has so many problems that I can’t recommend a good way to do what looks like a giant pile of bad things and the name you chose is among the most awful choices.

    At least the name Alloc gives me a hint so I’m thinking “I better free this when I’m done with it”.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i need store a variant value in a TStringList , so far i try
I am using boost recursive variant to store the variant data which I want
I need to store a VARIANT of type bstr in a stl vector. I'm
I have id values for products that I need store. Right now they are
I need to store phone numbers in a table. Please suggest which datatype should
I need to store a list of key value pairs of (integer, boolean) in
I have a typedef boost::variant<int, float, double, long, bool, std::string, boost::posix_time::ptime> variant which I
I need to store data in a grid like this: {0,1,2,3} {4,5,6,7} {8,9,10,11} {12,13,14,15}
I need to store products for an e-commerce solution in a database. Each product
I need to store app specific configuration in rails. But it has to be:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.