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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T04:12:51+00:00 2026-05-28T04:12:51+00:00

I am doing a SQL table data copy. First I am getting all the

  • 0

I am doing a SQL table data copy. First I am getting all the data from a csv file (which is got from a sql table) in the csv file I get ‘é’ correctly, but when I insert it in the table then I’m getting ‘?’ in the sql table. I don’t use any encoding, so everything is default. Somebody knows why this happens?

SOLVED:

Needed to read the csv like this:

string[] csvlines = File.ReadAllLines("C:\\export.csv",Encoding.GetEncoding("Windows-1252"));

Thanks

  • 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-28T04:12:52+00:00Added an answer on May 28, 2026 at 4:12 am

    Generally speaking you should use whatever encoding was used when the table was created (or last modified – for the nitpickers).
    If you are transferring data between different tables you possibly need to use different encodings for reading and writing data.

    The .NET framework provides a rich list of implemented encodings, which you can find below this type: System.Text.Encoding

    UPDATE

    Please use Notepad++ to determine the encoding of the .CSV-file you are reading data from. Then use that Encoding in the constructor of your StreamReader object.

    So if Notepad++ tells you that the file is encoded in UTF-8, use the following lines of code to read from your file:

    using(var reader = new StreamReader(new FileStream("myCSVfile.txt", FileMode.Open, FileAccess.Read), Encoding.UTF8)
    {
      // read file content here
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm doing a bulk insert of a CSV file into SQL Server 2005, using
Got a complex SELECT query, from which I would like to insert all rows
I have a datagrid view which shows table data from a database Environment: -
I am doing a SQL Insert to populate my table. I have a unique
Are they less vulnerable to SQL injection than doing stuff like mysql_query(SELECT important_data FROM
I'm trying to write Windows app to get data from From Fox Pro DB,
I am running a bulk copy of two columns of a table from one
Getting data into and out of SQL tables with C# I built a C#
I have a SQL table, let's call it Table A, which has several rows
I'm trying to export from SQL Server to Oracle a table that consists of

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.