Main > Free Download Search >

Free secure database software for mac

secure database

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1734
Tech Database 2.4

Tech Database 2.4


Two databases for hardware info and images. more>>
Tech Database is FileMaker Pro 5 based and simple to use. It is comprised of two databases using relationships to create some cool unit selections.

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!
<<less
Download (344KB)
Added: 2004-05-19 License: Freeware Price:
1988 downloads
Appleworks Database Files 1.0

Appleworks Database Files 1.0


Appleworks database for software & hardware inventory. more>>
Appleworks Database Files contains 3 Appleworks 6.x database files for keeping track of computer software, hardware, and internet logins and passwords. Keep track of serial numbers, prices, puchase dates, etc.
<<less
Download (259KB)
Added: 2004-08-06 License: Freeware Price:
1923 downloads
flix able 1.28

flix able 1.28


FileMaker Pro database to inventory your DVDs. more>>
flixable is a FileMaker Pro application DVD-DATABASE. With everyting you need to keep track of your dvds. Including loaners, features, cover image, audio/video, overview, etc.
<<less
Download (763KB)
Added: 2004-08-06 License: Freeware Price:
1908 downloads
Vapor X 1.1

Vapor X 1.1


Vapor harnesses the power of SSH to provide secure, encrypted VPN connections for AppleShare, WWW, Server Admin and other Internet more>>
Vapor harnesses the power of SSH to provide secure, encrypted VPN connections for AppleShare, WWW, Server Admin and other Internet services.
<<less
Download (1.2MB)
Added: 2004-09-12 License: Freeware Price:
1870 downloads
Secure Shell Helper 1.2.2

Secure Shell Helper 1.2.2


Secure Shell Helper - Configure a working OpenSSH system more>>
Secure Shell helper alleviates the need to use the command line to configure a working OpenSSH system. Its all point and click !
Main features:
- Control whos allowed to access your account
- Generate new OpenSSH keys
- View/Export your public keys
- Setup and control the SSH server
- Easy to use Wizard allows you to configure the server and personal identity.
Enhancements:
- Fixed issue where turning off Password Authentication didnt work
- Smaller app size.
<<less
Download (762KB)
Added: 2005-09-29 License: Freeware Price:
1486 downloads
XDB.lib 1.0

XDB.lib 1.0


XDB.lib - XML like persistent file based Database more>>
XDB.lib is useful for simple and fast save-retrieve of data on not DBMS enabled Web Hosts.
XDB.lib is a personal XML like persistent file based Database for REALbasic.

<<less
Download (2KB)
Added: 2005-11-25 License: Freeware Price:
1428 downloads
DatabaseSQLDump 1.0

DatabaseSQLDump 1.0


DatabaseSQLDump extends the Database class with 2 new methods more>>
DatabaseSQLDump is a REALbasic module that extends the Database class with 2 new methods.
The Database class has the folowing new methods:
- SQLDump : This method dump the entire database in SQL statements.
- SQLLoad : This method load and execute multiple SQL statements.

<<less
Download (100KB)
Added: 2005-11-25 License: Freeware Price:
1428 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.9H2 Database Engine is a web based java database engine. Main features: - Fast database engine - ... - 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
Farsi/English database 1.3

Farsi/English database 1.3


Farsi/English database - Farsi/English and English/Farsi dictionary-database more>>
Farsi/English and English/ Farsi dictionary-database with more then 100000 words for Wordlookup 2.09 or 3.0.
Please make sure, that in your System in the "System Prefernces/International panel" Arabic and Farsi is activated and Arabic is on the top of the List and Farsi is the second place.
Enhancements:
- Added more then 3000 new Computer related words.
<<less
Download (1.4MB)
Added: 2006-01-01 License: Freeware Price:
1407 downloads
Secure Delete Drop 1.0

Secure Delete Drop 1.0


Secure Delete Drop - secure delete files more>>
Secure Delete Drop is an AppleScript droplet that securely and thoroughly deletes files that are droped onto it.
Drop some files onto the icon of Secure Delete Drop, and those files are overwritten three times with a meaningless byte pattern and then deleted.

There is no chance of retrieving the deleted files after Secure Delete Drop has finished its work.


<<less
Download (116KB)
Added: 2005-12-28 License: Freeware Price:
1400 downloads
Salt & Pepper Encrypter 1.0

Salt & Pepper Encrypter 1.0


Salt & Pepper Encrypter - PHP functions that will make your password storage more secure more>>
Salt & Pepper Encrypter is a collection of two PHP functions that will make your password storage more secure! Instead of using just a common hash function, it uses a combination of them along with its own algorithm!
If you want to securely store this password in your database, but still be able to authenticate the user, Salt & Pepper Encrypter can save your password in the database a number of ways.
By having such a variable way of storing data you are circumventing hackers from comprimising your data. After storing this in the database, you can check the users inputted password for correctness as well.
Main features:
- Creates a seemingly random string for any password
- Uses a site-specific "encryption key"
- Allows you to check a password against a stored string
- Some configurable options
- Debug mode available.
<<less
Download (2KB)
Added: 2006-01-13 License: Freeware Price:
1381 downloads
TrashTimer 1.2

TrashTimer 1.2


TrashTimer - Automatic and secure trash deletion more>>
TrashTimer is a prefpane for automatic trash deletion...
Automatically removes individual files or folders from the trash after a configurable period of time. Provides secure trash deletion.
Enhancements:
- Distributed as a Universal Binary for both PowerPC and x86 based Macs.
- Improved German localisation.
<<less
Download (220KB)
Added: 2006-01-19 License: Freeware Price:
1373 downloads
Personal Serial Database X 1.6.1

Personal Serial Database X 1.6.1


Personal Serial Database X - Archive serial numbers, URLs, passwords etc. more>>
Personal Serial Database is a small utility which allows you to save all of your serial numbers, passwords, URLs, network locations, bookmarks, or anything else which you might lose if you wrote it on a post-it and stuck it to your monitor.
Enhancements:
- Fixed issues with installation.
- Added EULA.
- Also made download a little weeee bit smaller. Yay!
<<less
Download (2.7MB)
Added: 2006-04-17 License: Freeware Price:
1337 downloads
 
Other version of Personal Serial Database X
Personal Serial Database X 1.6It comes as a simple yet useful utility which helps you to save all ... Personal Serial Database X 1.6 comes as a simple yet useful utility which helps you to save all of
License:Freeware
Download
downloads
Added: 2002-12-14
Thai ComicsToday 1.2

Thai ComicsToday 1.2


Thai ComicsToday - Update your favorite Thai comic books daily with new releases more>>
Update your favorite Thai comic books daily with new releases. Widget by TMC Widget Team.
Enhancements:
- RSS database supported
- New interface.
<<less
Download (65KB)
Added: 2006-03-06 License: Freeware Price:
1334 downloads
MediaFolderManager 2.5.5

MediaFolderManager 2.5.5


MediaFolderManager - Produce OMFI MediaFiles for each project more>>
When you want to edit several projects at the same time with a single MediaComposer, you may feel troubled. But I have a good news for you. I have programmed MediaFolderManager which ables you to switch OMFI MediaFiles. With this program, I produce OMFI MediaFiles for each project and proceed my job switching among files.

There are benefits doing this and those are

1. There will be less accidents that other people deletes your media by mistake.
2. It is easier to delete media used in the project ( You just need to trash it. If you trash it with the folder as whole, unrecognizable + unnecessary Pre-ComputeMediaFile will be deleted, too.)
3. The file size will be smaller because Media Database will be organized for each project.
4. Although you face a terrible accident that destoryies current Media Database, other files are secured.

I am enjoying stable environment on my MediaComposer by switching Media folders. Not only that, it reduces the amount of memory required, especially on MediaComposer 7.X.

Oh, dont worry, it is free.
<<less
Download (1.1MB)
Added: 2006-03-24 License: Freeware Price:
1311 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5