database development plan
Java development Droplets 1.0
Java development Droplets - Java droplets to run javac and java in Terminal more>>
They automate opening a new Terminal window, changing the current directory and executing a command on the file.
* "Javac" compiles .java source files dragged onto it,
* "Java" runs the class file of the .java or .class file dragged onto it,
* "Both" compiles the .java source file and if successful, runs the resulting class file.
Vision Development Package
Vision Development Package - Development installer package more>>
Vision Application Library - binary and headers
Repository Modules - binaries, source code and project files
Example Applications - source code and project files
VisionEditor - binary
XCode project, target and file templates
Maintenance and Uninstall Scripts.
OS X Development 1.0
OS X Development - Offers information about the latest development tools published on Apple.com more>>
StacknSplash 1.1.7 is designed as a professional program that can test your sorting skills under pressure. Arrange blocks into groups by swapping, pushing, stacking, dropping, and splashing! Groups of 3 or more blocks are removed from the game and points awarded! Your aim is to push the remaining blocks under the water! All the time, new blocks are raining down from the sky, in a race against the clock!
Careful game play will slow the falling blocks, but you'll have to move fast when the levels get more difficult! The game takes on elements of Bejeweled and Tetris Attack, and adds more than a splash of originality.
Major Features:
- Unlimited Play; no Score or Time limits!
- Unlocks Save & Continue feature!
- One Passcode works for all versions!
- Play Easy, Medium and Hard modes.
- No nag screens or purchase buttons.
- Passcode sent instantly!
- Free Online Game Tips and Support.
- Free Updates; Pay once only
Enhancements:
- Blocked some methods of cheating.
- Optimized the game to run faster.
- Optimized startup times for quick game launch.
- Fixed a problem causing a crash on startup.
Requirements: Mac OS X / Classic version also available
California Website Development 1.0
Free Dashboard informational widget for your Mac more>> Aimersoft Mac Video Converter is the most powerful Mac Video Converter for you to convert video on Mac OS X (Leopard supported). With this awesome Mac Video Converter, you can easily finish the conversion such as convert MPEG to AVI; convert AVI to MP4<<less
Web Development Icons 1.0
A nice icon set for your desktop. more>> Where is M13? is a unique application that helps you visualize the locations and physical properties of deep sky objects in and around the Galaxy.
At home, Where is M13? serves as a reference you will frequently turn to when you read about an object and become curious where it is with respect to our galaxy. In the field, the program will enhance your observing experience by allowing you to get an intuitive sense of the physical location, size, luminosity, and distance of the object you are viewing. You will find Where is M13? a great educational and outreach tool as well.<<less
Flash Development without Flash 0.1
Flash Development without Flash - Cocoa tracer and mtasc build files for TextMate more>>
Flash Development without Flash is a development enviroment featuring Cocoa tracer and mtasc build files for TextMate.
This is very basic at the moment and not overly simple to setup. I might update this in the future if it gets attention. Please, if you wish, do modify the files, make it better or whatever you want.
CodeWarrior Development Studio Update 9.6
CodeWarrior Development Studio Update - Maintenance release of the CodeWarrior Development Studio for Mac OS tools more>>
This update should only be applied to registered users of: CodeWarrior Development Studio for Mac OS Version 9.0, 9.1, 9.2, 9.3, or 9.4
There are two versions of the 9.5 update installer for you to choose from.
Option one: You can download the full 9.5 update installer here. It is a complete, self-contained installer containing a complete set of rebuilt libraries.
Option two: You can download the 9.5 web update installer here. The web update installer is small and downloads the 9.5 update items from the Metrowerks ftp server as you need them. You can use the web installer to update your system without downloading the rebuilt libraries and save some download time. However, if you elect to not install libraries, you must manually rebuild the MSL and runtime libraries on your machine after installing the update.
H2 Database Engine 1.1.113
An SQL database engine written in Java more>> An SQL database engine written in Java
H2 is an SQL database engine written in Java (but also available as a native binary). JDBC and ODBC APIs are supported.
Embedded and server modes are available. A Web console application is included. Clustering is supported.
H2 Database Engine is a web based java database engine.
Main features:
- Fast database engine
- Free, source code is included
- Supports standard SQL
- Written in Java
- Disk based or in-memory databases
- Browser base Console application
- JDBC API
- Limited ODBC support
- Embedded and client/server (network) mode
- High availablility support (clustering / failover)
- Wide range of data types including large objects (BLOB/CLOB)
- Strong security features (SSL, users, roles, encrypted files)
- Multiple connections, table level locking
- Cost based optimizer, using a genetic algorithm for complex queries
- Transaction support (serializable transaction isolation)
- Zero-administration, automatic recovery
- Large resultset, external sorting
- Scrollable and updatable resultset support
- Read only views and inline views
- Inner and outer joins, subqueries
- Many functions already built-in
- Triggers and Java functions / stored procedures
- Referential integrity / foreign key constraints with cascade, check constraints
- Multiple schema support
- Compatibility modes for HSQLDB, MySQL and PostgreSQL
- Sequence and autoincrement columns
- Well tested (high code coverage, randomized stress tests)
- Small footprint (smaller than 1 MB)
- Uses a small number of database files
- Can be compiled to native code using GCJ
- Primary keys, multiple index types (b-tree, linear hash, tree, hash)
- ORDER BY, GROUP BY, HAVING, UNION, LIMIT
- Information Schema
- Multiple connections
- Collation support
- EXPLAIN PLAN support
- The database can generate SQL script files
- Support for linked tables, and a built-in virtual range table
- Automatic re-compilation of prepared statements
- Sophisticated trace options
- Low memory requirements
- Easy to understand exception messages
- Standard handling of NULL values
- Multilanguage console application (at this time, English and German).
Enhancements
- Shell tool: the built-in commands EXIT, HELP, ?, LIST, and so on didnt work with a semicolon at the end.
- JDK 1.5 is now required to build the jar file. However it is still possible to create a jar file for Java 1.4. For details, see buildRelease.sh and buildRelease.bat. As an alternative, compile using JDK 1.5 or 1.6 and use Retrotranslator to create a Java 1.4 version http://retrotranslator.sourceforge.net/).
- When deleting or updating many rows in a table, the space in the index file was not re-used in the default mode (persistent database, b-tree index, LOG=1). This caused the index file to grow over time. Workarounds were to delete and re-created the index file, alter the table (add a remove a column), or append ;LOG=2 to the database URL. To disable the change, set the system property h2.reuseSpaceBtreeIndex to false.
- Identifiers with a digit and then a dollar sign didnt work. Example: A1$B.
- MS SQL Server compatibility: support for linked tables with NVARCHAR, NCHAR, NCLOB, and LONGNVARCHAR.
- Android: Workaround for a problem when using read-only databases in zip files (skip seems to be implemented incorrectly on the Android system).
- Calling execute() or prepareStatement() with null as the SQL statement now throws an exception.
- Benchmark: the number of executed statements was incorrect. The H2 database was loaded at the beginning of the test to collect results, now it is loaded at the very end. Thanks to Fred Toussi from HSQLDB for reporting those problems. However the changed do not affect the relative performance.
- H2 Console: command line settings are no longer stored in the properties file. They are now only used for the current process, except if they are explicitly saved.
- Cache: support for a second level soft-references cache. To enable it, append ;CACHE_TYPE=SOFT_LRU (or SOFT_TQ) to the database URL, or set the system property h2.cacheTypeDefault to "SOFT_LRU" / "SOFT_TQ". Enabling the second level cache reduces performance for small databases, but speeds up large databases. It makes sense to use it if the available memory size is unknown. Thanks a lot to Jan Kotek!
GNU Development Environment 1.1
GNU Development Environment - Suite of compilers w/CPU simulator and debugger more>>
TheDashboard - Widget and Gadget Development 0.1
A nice dashboard widget that will keep you informed about the latest widget developments. more>> A nice dashboard widget that will keep you informed about the latest widget developments.
The perfect tool to keep you up to date with the latest widget developments.
Main features:
- get Just Added Widgets
- get Top50 Widgets
- get TheDashcode Tips
- get GoogleWidgets
- get GameWidgets
- get TVWidgets
All from one Widget!
Ensemble Database Converter 1.0
Ensemble Database Converter - Convert database from Ensemble v1.0 to Ensemble2 more>>
Do below operations at first, then you easily convert database from Ensemble v1.0.
1. Download Ensemble Database Converter
2. Launch Ensemble2
3. Only follow instructions
PostgreSQL Database Server 8.3.0
PostgreSQL Database Server is a program functioning as an open source relational database system more>>
PostgreSQL Database Server 8.3.0 is a program functioning as an open source relational database system. It has more than 15 years of active development and a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness. It runs on all major operating systems, including Linux, UNIX (AIX, BSD, HP-UX, SGI IRIX, Mac OS X, Solaris, SunOS, Tru64), BeOS, and Windows. PostgreSQL Database server already embedded a useful GUI - PGadmin. If you want to import MS Access or other formats to PostgreSQL, you can install a Mac OS X GUI Navicat PostgreSQL
PostgreSQL is an open-source descendant of this original Berkeley code. Also, PostgreSQL can be extended by the user in many ways.
It supports a large part of the SQL:2003 standard and offers many modern features:
- Complex queries
- Foreign keys
- Triggers
- Views
- Transactional integrity
- Multiversion concurrency control
Appleworks Database Files 1.0
Appleworks database for software & hardware inventory. more>>
Tech Database 2.4
Two databases for hardware info and images. more>>
One for hardware information and the second to store whatever images you choose to represent a given piece of hardware, (i.e. Laptops, CPUs, Modems, etc.) Printing reports has not yet been implemented in this version as I always find my exported data more useful than a printed report from FMPro.
lease feel free to alter this database to suit your needs. Then send the developer a copy!

Oracle SQL Developer 1.5.4.59.40
Graphical tool that enhances productivity and simplifies database development tasks. more>>
Graphical tool that enhances productivity and simplifies database development tasks. With SQL Developer, you can browse database objects, run SQL statements and SQL scripts, and edit and debug PL/SQL statements. You can also run any number of provided reports, as well as create and save your own.
SQL Developer can connect to any Oracle Database version 9.2.0.1 and later. We support SQL Developer running on Windows, Linux and Mac OS X.