What library can I use? (the data of rows are simple wxString).
i'm Italian so sorry for My English

thank you!
For a local database SQLite is a popular choice. SQLite has a full blown SQL database engine, so you are not restricted in any way.wxProgrammer wrote:I'm searching a library for create a local database (simple folder and file).
SQLite itself is a pure C library. However, you can use wxSQLite3, providing a thin SQLite wrapper for use in wxWidgets based applications.wxProgrammer wrote:the library must be wx-compatible.
wxSQLite3 comes with a small sample application showing how to access a database. It should be fairly easy to use, if you inspect the code of the sample application and look at the wxSQLite3 API documentation.wxProgrammer wrote:If the library don't use mysql or similar but simple functions like "getRow("row", "table", "db") is better for me.
What library can I use? (the data of rows are simple wxString).
wxSQlite3 is what you need!wxProgrammer wrote:Hello! I'm searching a library for create a local database (simple folder and file). the library must be wx-compatible. If the library don't use mysql or similar but simple functions like "getRow("row", "table", "db") is better for me.
What library can I use? (the data of rows are simple wxString).
i'm Italian so sorry for My English
thank you!