End Google Ads 201810 - BS.net 01 --> Hi all.

I have some issue with data encoding.
I have a txt file, which was open like this:
StreamWriter m_ComissionShopWriter = new StreamWriter(Directory.GetCurrentDirectory() + "\\logs\\1.txt", false, Encoding.GetEncoding(1251));
then I user WriteLine method to put there some data, which was taken from some stream:
sr = new StreamReader(stream, Encoding.GetEncoding(1251));

After, I try to load it into table, which has the following collumn:
varchar(100) cp1251_general_ci
Insertion goes great!
But when I run select query on it, I got some junk data instead of readable, 1251 encoded, data.

What is wrong, and how can I fix it?

Thanks!