How to specify character set in ODBC

This article defines the connection string through which user can specify the character set in ODBC
  • 7650
Introduction

Character set allows a system to perform its basic operations by storing a large amount of data as character sets. In order to implement it use the following connection string.

Driver={MySQL ODBC 5.1.17 Driver};Server=SpecifiedServerAddress;charset=UTF8;Database=SpecifiedDatabase;User=Username; Password=Password;Option=3;
 
Further Readings

You may also want to read these related articles.

Ask Your Question

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.