eg-be / exodbc

exOdbc - open source C++ ODBC library
0 stars 0 forks source link

Maybe stick to std::wstring on windows, instead of std::string #4

Open eg-be opened 2 years ago

eg-be commented 2 years ago

atm everything is std::string with utf-8, resulting in conversion when calling the winapi. Maybe typedef some custom string that expands to std::wstring on windows and std::string on linux, or use some other solution to avoid all these conversions