Howdy,
I've got wxWidgets 3.0.x working with wxSQLite3. I'm still somewhat
new to wxWidgets, but I'm digging it.
My understanding is that wxSQLite3 is a wrapper to SQLite3
functionality. It translates between wxString and the expected UTF-8
formats. That's good stuff.
Now I am trying to d
On Mon, Nov 3, 2014 at 11:08 AM, wrote:
> 1. Is there an OR/M framework that works with wxWidgets and SQLite3
> that I just haven't found?
Not that I'm aware of.
> 2. If not 1), then does approach of rolling my own make the most sense?
Most likely not, but I think only you are going to be able
> Then again, you're using SQLite, which is already a step down from
> more powerful DB engines. SQLite is good for extremely simple
> relational DBs, but if you think you need a full ORM to wrap a much
> less simple DB, there's a decent chance you shouldn't be using SQLite
> at all.
Could yo