SPTK 3.5.7.07 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News SPTK 3.5.7.07 (Default branch)
# 1  
Old 05-01-2008
SPTK 3.5.7.07 (Default branch)

Image SPTK (Simply Powerful Toolkit) is a cross-platform toolkit that provides a set of C++ classes for fast and easy application development. It provides GUI components that use FLTK, and features database support with seamless connection to GUI components. There are drivers for use of SQLite and PostgreSQL directly, as well as support for other database engines through UnixODBC. SPTK includes many classes for working with strings, dynamic arrays, and maps, and is faster and has a smaller footprint than STL. It also supports reading, writing, and creating Excel 7 files, high-level GUI components with dataset support, support for automatic layouts, and support for Aspell. License: GNU Lesser General Public License (LGPL) Changes:
This release includes several fixes for the CSocket class. In CSocket::close(), the call of ::shutdown() was replaced with a call of ::close(). The call of ::shutdown() doesn't actually close the socket and doesn't release the socket descriptor. Several exceptions were added, which are thrown in case of errors in socket-related system calls.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
WIKI-TOOLKIT-SETUPDB(1p)				User Contributed Perl Documentation				  WIKI-TOOLKIT-SETUPDB(1p)

NAME
wiki-toolkit-setupdb - Set up a database storage backend for Wiki::Toolkit. SYNOPSIS
# Set up or update the storage backend, leaving any existing data # intact. Useful for upgrading from old versions of Wiki::Toolkit to # newer ones with more backend features. wiki-toolkit-setupdb --type postgres --name mywiki --user wiki --pass wiki --host 'db.example.com' # Clear out any existing data and set up a fresh backend from scratch. wiki-toolkit-setupdb --type postgres --name mywiki --user wiki --pass wiki --force-preclear DESCRIPTION
Takes three mandatory arguments: type The database type. Should be one of 'postgres', 'mysql' and 'sqlite'. name The database name. user The user that connects to the database. It must have permission to create and drop tables in the database. two optional arguments: pass The user's database password. host The hostname of the machine the database server is running on (omit for local databases). and one optional flag: force-preclear By default, this script will leave any existing data alone. To force that to be cleared out first, pass the "--force-preclear" flag. AUTHOR
Kake Pugh (kake@earth.li). COPYRIGHT
Copyright (C) 2002-2003 Kake Pugh. All Rights Reserved. Copyright (C) 2006 the Wiki::Toolkit team. All Rights Reserved. This code is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Wiki::Toolkit perl v5.14.2 2011-09-25 WIKI-TOOLKIT-SETUPDB(1p)