Hello! chcp 65001 is a command for CMD that changes the code to UTF8. Question: Is there such a command for the Command Line Shell For SQLite? If I try to insert data from the command line shell

INSERT INTO Words (en, ru) VALUES ('one', 'один'), ('two', 'два'), ('three', 'три'), ('four', 'четыре'), ('five', 'пять'); 

Russian words are written to the database in the form of questions. I think one of the solutions to this question is to change the code page of the MOST COMMAND SHELL . PRAGMA encoding = "UTF-8"; does not change anything. If anyone knows, tell me. Thank.

  • 2
    Possible duplicate question: SQLite SELECT * FROM encoding - Fat-Zer
  • Dear Fat-Zer, thank you very much! Your answer is, as always, clear, useful and productive! This is the answer of THIS PROGRAMMER! - Anton

0