9 projects tagged "Code Generators"
LiteSQL is a C++ library that integrates C++ objects tightly to a relational database and thus provides an object persistence layer. LiteSQL supports SQLite3, PostgreSQL, and MySQL as backends. LiteSQL creates tables, indexes, and sequences to database and upgrades schema when needed. In addition to object persistence, LiteSQL provides object relations which can be used to model any kind of C++ data structures. Objects can be selected, filtered, and ordered using a template- and class-based API with type checking at compile time.
SQL Construction Kit aims to provide a simple builder/factory pattern based approach to generating DML SQL for all popular RDBMS systems. Included builders are SelectBuilder, InsertBuilder, UpdateBuilder, and DeleteBuilder. It is much lighter weight than any of the ORM tools available, and is 100% Java. It is a complete re-factoring of code that has been in production use since 2001 (updated to use features of Java 6). Also included is a Facade patterned Database object that wraps a Datasource object. This provides an execution framework for the results of the Builder objects, which includes simplified transaction and batch management as well as the ability to transparently handle SQL exceptions in a default manner. The Database object also provides a simple object-oriented approach via wrappers around the database metadata.
Pork.Generator is a Web based tool to inspect your databases and generate Pork.dbObject based code. The generator analyzes the relations in your database by trying to match primary keys to fields of other tables. If you have created your table structure following some simple rules, this project can either create a complete CRUD (Create, Read, Update, Delete) interface into a .zip file, or just output your complete database schema into O/R mapped objects. Pork.dbObject is an Object-Relation mapper for PHP 5 that attempts to be easy, fast, and lightweight.
Druidedb is a simple XML file database API in Java to manage an XML database file system without database complexity (no server or client, and stores only strings). This API creates both the access DAO sources files and the DB filesystem. It can handle auto-increments and primary keys.
MetaBoss is an integrated suite of tools for the design, development, and management of enterprise software systems through modelling. It utilises OMG's Model Driven Architecture concepts and is primarily oriented at enterprises using Java based tools and technologies. It encourages serious upfront analysis and design and aims to crystallise the value of it by automating a number of activities in the Software Development Life Cycle.
Generating new objects for the Query Object Framework is repetitive, tedious, and time consuming. Qof Generator automates this process in PHP to build a working test program linked against QOF. Objects are created from an HTML form using a temporary MySQL cache and exported with Makefile, ./autogen.sh, ChangeLog, README, C source code, and doxygen mark-up comments in a tarball built by the PHP code.
RSP is a retargetable language for writing portable Web applications. Web applications can be written once in RSP and then compiled, using the RSP compiler, to either ASP, JSP or PHP. The RSP language is syntactically similar to Java/JSP. It is strongly typed and pseudo object orientated. Its standard library contains functions and objects for common Web programming tasks and database abstraction.