Ten Reasons For POCO
Find them here. Mostly based on feedback I got from POCO users I’ve talked to.
Find them here. Mostly based on feedback I got from POCO users I’ve talked to.
Hi all, A first draft of PocoWebWidgets was submitted to SVN. PocoWebWidgets is a GUI library for Web based applications and this very first version features the following GUI elements: Buttons, ImageButtons, RadioButtons CheckBoxes, ComboBoxes Tables TextArea, TextFields, PwdFields Image HidablePanel ListView To align widgets one can use a Stackpanel, a FlowPanel or a Table. […]
Wouldn’t every true C++ programmer talking to a database be happy to be able to do something like this: RecordSet rset(session, “SELECT * FROM Vectors”); for (RecordSet::Iterator it = rset.begin(); it != rset.end(); ++it) std::cout << *it; Or this: std::copy(rset.begin(), rset.end(), std::ostream_iterator<Row>(std::cout)); No doubt. Well, if you’re a C++ aficionado and have a need to […]
During a very relaxing one hour run through the forest yesterday, I suddenly had an idea how to implement asynchronous I/O for streams and sockets in POCO with very little effort. I’m going to try my ideas out today, so you can expect to show up something in the SVN repository tomorrow – it shouldn’t […]
Today I fixed most of the currently open bugs reported on Sourceforge. The result is in the Subversion repository and will soon become release 1.3.1. There are also improvements to the Unix build system. It is now possible to build POCO-based applications and libraries outside of the POCO_BASE directory hierarchy. To do this, you’ll have […]
Are you planning a POCO based project or are you already in the middle of it and want to receive expert knowledge face-to-face? Here is what Peter Thulin, Technical Lead at TAC said about a recent training: “With the POCO Kick-Start Training we received expert knowledge directly from one of POCO’s developers. Through the training […]
Interesting things are happening. While Steve Jobs, explaining why iPhone comes Java-less, says: “Java’s not worth building in. Nobody uses Java anymore. It’s this big heavyweight ball and chain.”, on Artima some folks are lamenting about their frustration with Java ME. In the mean time, Symbian goes POSIX. And last but not least: the last […]
POCO Data is now available for download. This is the first release of Data, and in order to get this release out sooner, some planned features are still missing (full ODBC Unicode support on Windows, DateTime support). Nevertheless, I am quite happy with the result for now, and hope you will be too. The documentation […]
I am happy to announce the official release and availability of POCO 1.3! Here’s a summary of what is new in 1.3: HashMap and HashSet classes (Foundation) Tuple class template (Foundation) SharedMemory class (Foundation) FileStream, FileInputStream, FileOutputStream classes that support Unicode (UTF-8) filenames on Windows (Foundation) improvements and bugfixes in the Net library, mostly HTTP […]
Since yesterday’s post was lost due to the server failure, here is the announcement again: A prerelease snapshot of the upcoming POCO 1.3 release is now available for download from Sourceforge. The release is now basically feature complete; the only thing missing from the snapshot is the Data library, which will be part of the […]