ollydbg

Results 288 comments of ollydbg

Can you show me some method(some code location) to catch the event when the second wxAuiNotebook get the maxmized event? Maybe I can follow the direction to track some code....

I see some similar post, such as this one: [Teach the library to provide support for partial staging · Issue #195 · libgit2/libgit2sharp](https://github.com/libgit2/libgit2sharp/issues/195), this is in csharp language. Also, some...

This issue started about ten years ago, but still open now. I think an ORM style way could be more compact and simple, see the discussion here: [ORM: the query...

What is the status of this PR, I think the bulk adding is a very important feature for soci. I have a similar discussion issue discussion here: [ORM: What is...

When reading the document: [soci/docs/statements.md at master · SOCI/soci](https://github.com/SOCI/soci/blob/master/docs/statements.md) It looks like the `prepare` is very special? I mean the row object(instance) is only constructed when they are accessed in...

OK, I just debugged for a while, I have change the definition of `person` class like below, and try to check how many time the constructor and the destructor got...

Hi, @zann1x thanks for the explanation. I strongly suggest that your comments should be put in the document of soci. Because this will happens for all kinds of beginners like...

Hi, thanks for the explanation. Though I'm still not quite understand the move structure, I will try to learn it more. About the document improvement, I will do it in...

> No, that's not possible because bulk operations with custom types are currently not supported. OK, thanks for the help. So, my current implementation is the correct way(using the `for`...

From the document, I see some example has extra functions: https://github.com/SOCI/soci/blob/924d990f8f4b253e9f7897c92dccfd4c814f569e/docs/statements.md?plain=1#L224-L268 such as ~~~~ // first insert int a0 = 0; // update reference stmt.exchange(soci::use(a0)); stmt.define_and_bind(); stmt.execute(true); stmt.bind_clean_up(); ~~~~ So,...