Main > Free Download Search >

Free postgresql database software for mac

postgresql database

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1298
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
BigSQL 1.0

BigSQL 1.0


igSQL is a PostgreSQL client (not unlike psql). It enables the user to send SQL to a server and display the more>>
igSQL is a PostgreSQL client (not unlike psql). It enables the user to send SQL to a server and display the result.
<<less
Download (140KB)
Added: 2004-05-15 License: Freeware Price:
1987 downloads
MapServer 3.6.4

MapServer 3.6.4


Development environment for spatially enabled web apps. more>>
MapServer is an Open Source development environment for building spatially enabled applications, and is commonly used to build GIS web applications (although MapServer alone is not a full featured GIS system, nor does it aspire to be).

The MapServer OS X package by Server Logistics includes the MapServer core software in an easy-to-install Mac OS X installer package, as well as the various support libraries, PHP/MapScript, Perl MapScript, and a version of the PostgreSQL 7.2.4 database with the PostGIS 0.7.3 libraries.
<<less
Download (23.3MB)
Added: 2004-05-27 License: Freeware Price:
1979 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
BiggerSQL 1.2.3

BiggerSQL 1.2.3


Postgresql database browser. more>>
BiggerSQL is a Cocoa Postgresql Data Base Browser. BiggerSQL features flexible input, simplified table browsing, support for PL/pgSQL, online help, saving result sets in a variety of formats and much more. Source is included.
<<less
Download (1.4MB)
Added: 2004-08-29 License: Freeware Price:
1884 downloads
Eduphant 2.0b2

Eduphant 2.0b2


PostgreSQL GUI client. more>>
Whether you want to learn SQL or need a tool to look at the inner working (see the "Log" on the screen shot below) of the PostgreSQL server while you program a client application for it, EduPhant will be the answer.

You can use EduPhant regardless of your language or favorite operating system since it supports any text encoding PostgreSQL supports and works on Mac OS 8 and 9, OS X, Windows, and we have an experimental build for Linux too now.

Most other SQL clients dumbly enter data in PostgreSQL in their operating systems default text encoding, regardless of the encoding in which your database has been defined. This results in corrupted data that isnt usable cross-platform or with other clients that do respect the text encodings like EduPhant. The corruption is most noticable with non-ASCII characters like an accented "e."

EduPhants SQL query templates will allow the novices to quickly pick up the SQL syntax and logic, or they will jog the memory of the more advanced users. Plus they make it a breeze to rapidly construct your SQL queries. When you click on cells or headers of the query results table or of the database overview table, you enter their content into your query -- another very practical feature to reduce typing (and typos). You can also store your own custom SQL templates.
<<less
Download (1MB)
Added: 2004-11-23 License: Freeware Price:
1796 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 - ... Multiple schema support - Compatibility modes for HSQLDB, MySQL and PostgreSQL - Sequence and
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
PostgreSQL Cocoa Libraries 0.6.1

PostgreSQL Cocoa Libraries 0.6.1


PostgreSQL Cocoa Libraries - In-development Cocoa classes for accessing PostgreSQL databases more>>
PostgreSQL Cocoa Libraries is a set of in-development Cocoa classes for accessing PostgreSQL databases. HeaderDoc style documentation included.
Requires PostgreSQL installed either locally or remotely and that certain PostgreSQL include and library files be available on the local machine.
Enhancements:
- I added better behavior with null values and better exception handling as well as an executeUpdate method to make the classes behave more like JDBC classes with which many people are probably familiar.
- I have also added some detailed code examples in the "read me" file and included some of the necessary library files in the project.
<<less
Download (712KB)
Added: 2006-02-01 License: Freeware Price:
1368 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
Gift Management Database 1.0

Gift Management Database 1.0


Gift Management Database - Tutorial using Cocoa, ODBC, MySQL more>>
Gift Management Database is a complete project build with Cocoa and Xcode that use ODBC drivers for interfacing the MySql database.

This package includes all source code needed to build a complete application for managing presents and gifts. With this tutorial everyone can start to create a complete commercial application using databases.

You can manage person, gift and recurrence tables, meaning that you can create, modify, delete and print database information for Person, Gifts and so on.
<<less
Download (5.8MB)
Added: 2006-05-11 License: Freeware Price:
1270 downloads
Rebuild LaunchServices Database 1.0

Rebuild LaunchServices Database 1.0


Rebuild LaunchServices Database - Rebuilds LaunchServices Database more>>
If you see duplicate application names in Open With, when you control-click on a document, it means that your LaunchServices database needs to be rebuilt.

The Rebuild LaunchServices Database script takes care of it without using terminal.

Completly freeware.
<<less
Download (17KB)
Added: 2006-05-15 License: Freeware Price:
1265 downloads
pgAdmin3 1.4.2

pgAdmin3 1.4.2


pgAdmin3 - Administration/development for PostgreSQL database more>>
pgAdmin III is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world. The application may be used on Linux, FreeBSD, Solaris, Mac OSX and Windows platforms to manage PostgreSQL 7.3 and above running on any platform, as well as commercial versions of PostgreSQL such as Pervasive Postgres, EnterpriseDB, Mammoth Replicator and SRA PowerGres.

pgAdmin III is designed to answer the needs of all users, from writing simple SQL queries to developing complex databases. The graphical interface supports all PostgreSQL features and makes administration easy. The application also includes a syntax highlighting SQL editor, a server-side code editor, an SQL/batch/shell job scheduling agent, support for the Slony-I replication engine and much more. Server connection may be made using TCP/IP or Unix Domain Sockets (on *nix platforms), and may be SSL encrypted for security. No additional drivers are required to communicate with the database server.
<<less
Download (5.3MB)
Added: 2006-06-07 License: Freeware Price:
1242 downloads
Xsql 1.0.4

Xsql 1.0.4


Xsql - Send SQL queries to Oracle, MySQL, Postgresql servers more>>
Xsql is a small tool for Mac OS X to send SQL queries to a local or remote Postgresql or Oracle database server and to display and/or save the results. Output can be viewed either tab-delimited (for export to Microsoft Excel or similar applications) or in a table format.
Enhancements:
- Better integration with Mac OS X (standard file dialogs; preferences are now stored in the correct folder)
- Support for Finder drag-and-drop.
<<less
Download (228KB)
Added: 2006-06-19 License: Freeware Price:
1223 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5