Main > Free Download Search >

Free database application software for mac

database application

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7654
Application Timer 1.0

Application Timer 1.0


Application Timer - put a timer on any application more>>
Application Timer is an AppleScript that will put a timer on any application.
Now you can leave your computer and not worry about an application quitting. Just set a timer! Does minutes or hours, too.


<<less
Download (3KB)
Added: 2005-12-28 License: Freeware Price:
1414 downloads
Log Application Usage 1.1

Log Application Usage 1.1


Log Application Usage is a highly-efficient, high-quality application which is invisible and writes launch and quit times of all applications to the file Log Application Usage.log in the preferences folder. more>> <<less
Download (2.9MB)
Added: 2008-04-05 License: Free Price:
downloads
Application Folders 1.0

Application Folders 1.0


Application Folders - Various folders for your stuff more>>
Designed on Adobe CS folder perspective with 256 pixels size. Flash 8, Dreamweaver 8, iTunes folders (with alternative colour and images), Firefox, Thunderbird, .Mac, iLife 06, Developer, pictures, iMovie, Sync, actions, Maxon Cinema 4D, system, generic, graphite, silver, yellow, red, purple, green, orange, etc...
<<less
Download (1.1MB)
Added: 2006-04-10 License: Freeware Price:
1295 downloads
Tcl Web Application Framework 0.3.9

Tcl Web Application Framework 0.3.9


Helps simplify writing Web applications in the Tool Command Language (Tcl) more>> Helps simplify writing Web applications in the Tool Command Language (Tcl)

Tcl Web Application Framework provides the features that form the basis for writing an application, such as sessions, users, privilege separation, and an abstract database interface.
Tcl Web Application Framework is currently under development, but stable for production use.
Tcl Web Application Framework is written in such a way that applications will be able to easily integrate into the framework without having to modify the framework itself, making upgrading the framework without breaking the application possible.

System requirements:
- Tcl

<<less
Download (265KB)
Added: 2009-05-14 License: Freeware Price: FREE
179 downloads
Helma JavaScript Web Application Framework 1.6.3

Helma JavaScript Web Application Framework 1.6.3


An open source web application framework for fast and efficient scripting and serving of your websites and Internet applications. more>>


Helma is written in Java and employs JavaScript for its server-side scripting environment, removing the need for compilation cycles and reducing development costs while giving you instant access to leverage the whole wealth of Java libraries out there.
Helma offers simple and codeless mapping of application objects to database tables. In addition, an embedded object-oriented database performs automatic data persistence of unmapped objects.

<<less
Download (6.2MB)
Added: 2008-11-26 License: Freeware Price:
13 downloads
 
Other version of Helma JavaScript Web Application Framework
Helma Javascript Web Application Framework 1.6.0 RC1Open source web application framework. mapping of application objects to database tables. In addition, an embedded object-oriented
License:Freeware
Download (4.1MB)
937 downloads
Added: 2007-04-05
Application Commander 1.1

Application Commander 1.1


Application Commander is regarded as a flexible and handy utility that takes advantage of Apples Speech Recognition System in conjunction with the Application Switching Manager to allow you to control and manage your running applications by speaking some simple commands. more>> <<less
Download (20.5KB)
Added: 1999-02-26 License: Freeware Price:
downloads
H2 Database Engine 1.1.113

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!

<<less
Download (4.9MB)
Added: 2009-05-24 License: Freeware Price: FREE
218 downloads
 
Other version of H2 Database Engine
H2 Database Engine 0.9A Web console application is included. Clustering is supported. H2 Database Engine is a web ... - Disk based or in-memory databases - Browser base Console application - JDBC API - Limited ODBC
License:Freeware
Download (5.2MB)
1413 downloads
Added: 2005-12-15
GestLab Database 22

GestLab Database 22


GestLab Database gives you a free tool which starts with version 1.1, the application and database are separate files. more>>

GestLab Database 22 gives you a free tool which starts with version 1.1, the application and database are separate files. In order to use it, you must download both files (GestLab and GestLab Database), and place them in the same folder.

<<less
Download (106.5KB)
Added: 2004-01-01 License: Freeware Price:
downloads
Ensemble Database Converter 1.0

Ensemble Database Converter 1.0


Ensemble Database Converter - Convert database from Ensemble v1.0 to Ensemble2 more>>
Convert database from Ensemble v1.0 to Ensemble2.
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
<<less
Download (803KB)
Added: 2007-04-26 License: Freeware Price:
912 downloads
AppleSpec Database Jan, '03

AppleSpec Database Jan, '03


AppleSpec Database Jan, 03 is known as an effective canonical list of every piece of hardware ever released by Apple Computer. more>>

AppleSpec Database Jan, '03 is known as an effective canonical list of every piece of hardware ever released by Apple Computer. Mostly for developers, macintosh consultants and technical afficionados, the database is the #1 Technical resource to help people do their jobs.

Requirements:

  • Mac OS 8.6 - 9.x


<<less
Download (8.6MB)
Added: 2003-01-07 License: Freeware Price:
downloads
iRad Database 1.0.2

iRad Database 1.0.2


iRad Database is a highly-efficient, high-quality DICOM image server that functions as an optional database for iRad. more>>

iRad Database 1.0.2 is a highly-efficient, high-quality DICOM image server that functions as an optional database for iRad. iRad Database allows JPEG lossless and non compressed transfer syntaxes. iRad Database is a precompiled version of dcm4jboss and jboss.

<<less
Download (28.5MB)
Added: 2003-07-10 License: Freeware Price:
downloads
Oracle9i Database R2

Oracle9i Database R2


Enterprise database solution. more>>
Oracle9i Database is the state of the art in object-relational databases. Voted Editors Choice by PC magazine and the #1 database for Linux by Linux Journal, Oracle9i Database is the most scalable and full featured database available.

Whether driving your web site, packaged applications, data warehouses or OLTP applications, Oracle9i Database is a foundation technology for any professional computing environment..
<<less
Download (20KB)
Added: 2004-05-15 License: Freeware Price:
1114 downloads
Find Database Tables 1.0

Find Database Tables 1.0


Find Database Tables is the right solution if you have a bunch of MySQL tables in your database that you arent sure if you use anymore while finding them can be tough and daunting and youre afraid to delete any because that one obscure script you wrote years ago may still use it. more>>

Find Database Tables 1.0 is the right solution if you have a bunch of MySQL tables in your database that you aren't sure if you use anymore while finding them can be tough and daunting and you're afraid to delete any because that one obscure script you wrote years ago may still use it. Simply log onto your database sever, select your database, select the folder that has your scripts, and let Find Database Tables do the searching for you!

Major Features:

  1. Fast Searching
  2. View the table data - make sure if you really want to delete the table or not
  3. View the scripts where a table was found
  4. Drop unwanted tables right from the application
  5. Export the results to a CSV file that can be used in any spreadsheet application
  6. Can view table data, scripts, and delete tables while the searching is going on
<<less
Download (3.9MB)
Added: 2009-09-09 License: Freeware Price: Notavailable
downloads
Launch Application by Creator-Code 1.0

Launch Application by Creator-Code 1.0


Launch Application by Creator-Code launches an application by its creator-code more>>
Launch Application by Creator-Code is an AppleScript that is able to launch an application by its creator-code, avoiding having to locate it first.




<<less
Download (2KB)
Added: 2005-11-28 License: Freeware Price:
1427 downloads
ACR Codes Database 1.2

ACR Codes Database 1.2


ACR Codes Database brings a powerful application which has the aim to browse, search and generate ACR Codes (acr.org). more>>

ACR Codes Database 1.2 brings a powerful application which has the aim to browse, search and generate ACR Codes (acr.org). It is used to generate ACR codes for our teaching files database. It is available for MacOS 9.x and Windows OS. It includes all 6500 ACR Codes

Requirements: All Mac

<<less
Download (4MB)
Added: 2003-05-11 License: Freeware Price:
downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5