From: Dave D. <da...@dr...> - 2003-12-09 00:40:48
|
On Mon, Dec 08, 2003 at 07:43:18PM +0100, Sergiusz Michalski wrote: > Hi! > > I have question: > > Is it possible to build an application with database support in > wx4j? Sure. Just use JDBC: http://java.sun.com/products/jdbc/ > -> is wxTable and wxDbGrid, wxGrid class implemented in wx4j??? wxGrid has not been wrapped yet, but wxListCtrl has. There's no such C++ class as wxTable, but if you're looking for an equivalent of JTable, you want wxListCtrl in report mode. Check out the demo for an example of using wxListCtrl. There are no plans to wrap wxDbGrid because Java already has JDBC. In fact, there are no plans to wrap anything except the GUI classes. Non-GUI wxWindows classes, like database, threads, and networking already have fine Java versions. > Maybe can you send me small example of using DB in wx4j? Sorry, I don't have one. > In wx4j package there's no such a classes, so this is not a real port of > wxwindows for Java. Umm... wx4j *is* a real port, it's just incomplete. But more and more classes get added all the time. I need to do another release, soon, as we've added a lot since the last public release. -Dave |