I have this piece of code:
int casted_dbValue=3;
wchar_t* nativeData=(wchar_t*)casted_dbValue;
it is incorrect conversion between int to const wchar_t*. How can deal with this error?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
Have you tried the
_itowfunction?Or, the more secure version,
_itow_s.The first parameter (
value) is the integer value to be converted, the second is the string result, and the third is the base of the numeric value. It returns a pointer to thestrvalue.