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 3336048
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T00:05:22+00:00 2026-05-18T00:05:22+00:00

The below line works. It prints Success. wchar_t * s1 = (wchar_t *) LINSERT

  • 0

The below line works. It prints Success.

wchar_t * s1 = (wchar_t *) L"INSERT INTO OE(sqltext) VALUES('this text')";

if(WriteToSQL(s1) == 0)
  printf( "Success");     //Success
else
  printf( "Failed");     

I need to take user input to create dynamic sql. I need to do what
L prefix is doing.

When i take input and do the required conversion, it does not work.

char input[100]; 
char sql[500];  

printf("Enter input string :: "); 
fgets(input,100,stdin); 
for(int i=0;i<100;i++) 
    if(input[i]==10) 
        input[i]=0; 

strcpy(sql,"INSERT INTO OE(sqltext) VALUES('"); 
strcat(sql,input); 
strcat(sql,"')"); 

wchar_t wsql[500];  
MultiByteToWideChar( CP_UTF8, 0, sql, strlen(sql), 
wsql, strlen(sql) + 1 );  


if(WriteToSQL(wsql) == 0)
  printf( "Success");     
else
  printf( "Failed");     // It failed

Long conversassion but finally it did work. Hex memory dump and input from usta was most helpful. Thanks everybody for their time.

  • 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-18T00:05:23+00:00Added an answer on May 18, 2026 at 12:05 am

    You can’t just cast a char * to wchar_t * and expect it to work. You must do proper conversion, for example using MultiByteToWideChar function.

    And in general, be very careful with type casts, and in particular avoid using C-style casts in C++ programs. This very case is a good example of why: you told the compiler to shut up ((SQLWCHAR *) sql), and in return got a problem at runtime. Use casts only when you are absolutely sure you are doing the right thing, and know better than the compiler. Not surprisingly, such cases are relatively rare…

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

Sidebar

Related Questions

I use the line below in my C# winform app, this works great but
I am using the below line to blink a block. It works but the
The code I've pasted below works fine for drawing a line step by step
I have written this function (below). It should read in a file line by
Below linq query does not work, because the subquery line. if comment the subquery
How can I line break OHAttributedLabel ? My below code didn't work. OHAttributedLabel *lbl
I am using the below line to check my add user form to check
I have the below line in the unix shell script. I want to exclude
I have taken the below line from one of the blog The only way
Can someone explain me the syntax below line 1? I am OK with js

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.