Main > Free Download Search >

Free orm script

orm

Sponsored Links
Sponsored Links
Sort by >> Relevance
rss
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7
Metastorage

Metastorage


Tool that generates PHP persistent object classes that perform object-relational mapping (ORM). The generated code stores and retrieves objects from many types of relational databases: MySQL, PostgreSQL, Oracle, Microsoft SQL server, SQLite, etc.. more>> Tool that generates PHP persistent object classes that perform object-relational mapping (ORM). The generated code stores and retrieves objects from many types of relational databases: MySQL, PostgreSQL, Oracle, Microsoft SQL server, SQLite, etc.. Supports own Object Query Language (OQL), generates database schema instalation classes, Web forms classes and report classes. Provides a Web based and command line interfaces to execute the tool.<<less
Added: 2005-12-16 License: BSD Price: $0.00USD
10 downloads
Compass 2.2.0

Compass 2.2.0


This Java Framework enables the power of Search Engine semantics on different applications more>>

Compass 2.2.0 This Java Framework enables the power of Search Engine semantics on different applications.

The framework was built on top of the Lucene Search Engine and it integrates easily to other ORM development frameworks.

Major Features:

  1. Simple Compass provides a simple API for working with Lucene. If you know how to use an ORM, then you will feel right at home with Compass with simple operations for save, and delete & query.
  2. Lucene Building on top of Lucene, Compass simplifies common usage patterns of Lucene such as google-style search, index updates as well as more advanced concepts such as caching and index sharding (sub indexes). Compass also uses built in optimizations for concurrent commits and merges.
  3. Mapping Compass provides support for mapping of different data "formats" - indexing and storing (caching) them in the Search Engine: Object to Search Engine Mapping (using annotations or xml), JSON to Search Engine Mapping (explicit or dynamic), XML to Search Engine Mapping (using simple xpath expressions), and the low level Resource to Search Engine Mappping.
  4. Tx Compass provides a transactional API on top of the Search Engine supporting different transaction isolation levels. Externally, Compass provides a local transaction manager as well as integration with external transaction managers such as JTA (Sync and XA), Spring, and ORM ones.
  5. ORM Compass integrates seamlessly with most popular ORM frameworks allowing automatic mirroring, to the index, of the changes in data performed via the ORM tool. Compass has generic support for JPA as well as embedded support for Hibernate, OpenJPA, TopLink Essentials, and EclipseLink allow to add Compass using three simple steps.
  6. Spring Compass integrates seamlessly with Spring. Compass can be easily configured using Spring, integrates with Spring transaction management, has support for Spring MVC, and has Spring aspects built in for reflecting operations to the search engine.
  7. Distributed Compass simplifies the creation of distributed Lucene index by allowing to store the Lucene index in a database, as well as storing the index simply with Data Grid products such as GigaSpaces, Coherence and Terracotta.


<<less
Added: 2009-06-27 License: Other Free / Open Source License - Apache License Price: OtherFreeOpenSourceLicenseApacheLicense
15 downloads
SQLReactor 0.6

SQLReactor 0.6


SQLReactor is created to be a simple yet very useful ORM system for PHP5 with multi-database support like MySQL, SQLite, PostgreSQL and Oracle. more>>

SQLReactor 0.6 is created to be a simple yet very useful ORM system for PHP5 with multi-database support like MySQL, SQLite, PostgreSQL and Oracle.

<<less
Added: 2009-07-30 License: GPL - GNU General Public License Price: GPLGNUGeneralPublicLicense
downloads
phpPeanuts framework 1.4.0

phpPeanuts framework 1.4.0


PhpPeanuts is a full stack framework for developing database-backed applications in PHP. It supports high and sustainable developer productivity by default reasoning and the once and only once principle. It features the extended dynamic scaffolding of more>> PhpPeanuts is a full stack framework for developing database-backed applications in PHP. It supports high and sustainable developer productivity by default reasoning and the once and only once principle. It features the extended dynamic scaffolding of complete web-based applications (user interface and ORM) from meta data, including CRUD, relations and Query By Example. Its dynamic nature and high adaptability allow a very agile development style to remain highly productive (thus enjoyable) in later phases of development and maintenance.<<less
Added: 2004-05-07 License: Other Price: $0.00USD
14 downloads
OpenBiz - the Open Business Software Framework

OpenBiz - the Open Business Software Framework


OpenBiz provides a PHP framework that assists professional IT developers and consultants to build web-based enterprise applications. With the help of OpenBiz, you have a clear Model View Controller (M more>> OpenBiz provides a PHP framework that assists professional IT developers and consultants to build web-based enterprise applications. With the help of OpenBiz, you have a clear Model View Controller (MVC) architecture, your business data object is based on Object Relational Mapping (ORM), and you can quickly implement your business logic and presentation logic by constructing the XML metadata files using OpenBiz Eclipse plugin.<<less
Added: 2003-10-01 License: BSD Style Price: Free
2224 downloads
Using NHibernate and Log4Net in ASP.NET 2.0 applications 1

Using NHibernate and Log4Net in ASP.NET 2.0 applications 1


Hibernate and Log4J are a de-facto standard of ORM (Object-relational mapping) and logging (respectively) in Java world. Thats why both were ported to .NET runtime environment. NHibernate is ORM solution and is intended for transparent binding .NET more>> Hibernate and Log4J are a de-facto standard of ORM (Object-relational mapping) and logging (respectively) in Java world. Thats why both were ported to .NET runtime environment. NHibernate is ORM solution and is intended for transparent binding .NET classes to database tables. Log4Net is logging framework which is useful for tracking errors in application and can write logs either to database table or flat files.<<less
Added: 2007-09-18 License: Freeware Price: $0.00USD
10 downloads
Sequel 2.5

Sequel 2.5


This is a lightweight database access toolkit for Ruby more>> Sequel 2.5 provides users with a professional and lightweight database access toolkit for Ruby. Sequel uses the concept of datasets to retrieve data. A dataset object encapsulates an SQL query, letting the query fetch all the data by using a Ruby DSL.

Major Features:

  1. Sequel provides thread safety, connection pooling and a concise DSL for constructing database queries and table schemas.
  2. Sequel also includes a lightweight but comprehensive ORM layer for mapping records to Ruby objects and handling associated records.
  3. Sequel supports advanced database features such as prepared statements, bound variables, stored procedures, master/slave configurations, and database sharding.
  4. Sequel makes it easy to deal with multiple records.
  5. Sequel currently has adapters for ADO, Amalgalite, DataObjects, DB2, DBI, Firebird, Informix, JDBC, MySQL, ODBC, OpenBase, Oracle, PostgreSQL and SQLite3.

Enhancements

  • Add Dataset #set_defaults and #set_overrides, used for scoping the values used in insert/update statements
  • Allow Models to use the RETURNING clause when inserting records on PostgreSQL
  • Raise Sequel:DatabaseError instead of generic Sequel:Error for database errors, dont swallow tracebacks
  • Use INSERT ... RETURNING ... with PostgreSQL 8.2 and higher
  • Make insert_sql, delete_sql, and update_sql respect the :sql option
  • Default to converting 2 digit years, use Sequel.convert_two_digit_years = false to get back the old behavior
  • Make the PostgreSQL adapter with the pg driver use async_exec, so it doesnt block the entire interpreter
  • Make the schema generators support composite primary and foreign keys and unique constraints
  • Work with the 2008.08.17 version of the pg gem
  • Disallow abuse of SQL function syntax for types (use :type=>:varchar, :size=>255 instead of :type=>:varchar[255])
  • Quote index names when creating or dropping indexes
  • Dont have column accessor methods override plugin instance methods
  • Allow validation of multiple attributes at once, with built in support for uniqueness checking of multiple columns
  • In PostgreSQL adapter, fix inserting a row with a primary key value inside a transaction
  • Allow before_save and before_update to affect the columns saved by save_changes
  • Make Dataset#single_value work when graphing, which fixes count and paginate on graphed datasets
<<less
Added: 2009-07-03 License: Other Free / Open Source License - MIT License Price: OtherFreeOpenSourceLicenseMITLicense
15 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 1
  • 1