Benjamin Oldenburg

Results 27 comments of Benjamin Oldenburg

If anyone still has this issue: You can create another method in webview.h to the cocoa_wkwebview_engine class: ``` void createMenus() { // Create menu bar m_menuBar = objc::msg_send("NSMenu"_cls, "alloc"_sel); objc::msg_send(m_menuBar,...

Hmm... Then we could either add a message notifying the user that MacOS is not a supported platform or just leave this PR open, so that people who want to...

Okay, I ran the tests. At least on an arm64 Mac, there are several failed tests, which, as far as I remember, was not the case on a x64_86 machine...

Converting from UTF-16 to UTF-8 is no problem when retrieving data, because the column data type is known. When inserting/updating though, it is not so straightforward, as we don't have...

https://github.com/SOCI/soci/pull/1041 This should solve the problem.

> Thanks for working on this, but I don't know how do I feel about introducing a separate build variant for Unicode support. IMO it would be really better to...

maybe connection_parameters can be abused to decide at runtime what type of char / string is stored in the database. I think it might also be possible to SQLDescribeCol and...

> > The problem I have is that the data has been written already with another application and I have no influence on that. The database(s) are not UTF-8. >...

> Also note that wstring_convert has been deprecated and scheduled for removal from the standard (without replacement). It's a shame, but either way everyone here should be aware of this...

That sounds good! Okay, I'll add std::wstring support in a separate PR first. Afterwards we can add the conversion to std::string.