7 projects tagged "object"
ODB is a compiler-based object-relational mapping (ORM) system for C++. It allows you to persist C++ objects to a relational database without having to deal with tables, columns, or SQL and without manually writing any mapping code. The C++ code that performs the conversion between persistent classes and their database representation is automatically generated by the ODB compiler. The ODB compiler is a real C++ compiler except that instead of producing assembly or machine code, it generates portable C++, which can in turn be compiled by any C++ compiler. ODB is not a framework. It does not dictate how you should write your application. Rather, it is designed to fit into your style and architecture by only handling C++ object persistence and not interfering with any other functionality.
libpersist is a small library of C++ base classes and templates providing the capability to store and load objects in their entirety across executions. It also provides for object relocation between threads in a NUMA (non-uniform memory access) parallel processing environment. Objects are stored to disk as POD. They are reconstructed when reloaded into memory. Relocation is a special case of persistence, requiring reconstruction after the POD has been moved in memory. After all objects have been relocated, all references to the objects are swizzled (their IDs are resolved to their addresses), so that they can be dereferenced efficiently.
WebSite-PHP is a PHP Framework which has the distinction of being fully object-oriented and not requiring special knowledge of HTML or JavaScript. Knowledge of PHP and mechanisms for object-oriented programming (OOP) are still required. It provides an easy-to-use framework which is compatible with MySQL. With its 100% object programming, it provides maximum reusability of the framework components.
PHP Array to Object converter is a PHP class that can be used to turn any array into an object. It takes an array and assigns the variables of the class with the values of the array entries with the same name. Array entries with array values are also converted to objects recursively.
STSdb is an embedded object database system. Its advanced techniques enable organizations to manage terabytes, even petabytes of disparate data within secure, transaction-intensive environments using data management solutions that span a spectrum of challenges: sustaining extreme transaction volumes and tempos and supporting mission-critical analytics and data warehousing.
StructObject is a PHP class which can be used to create objects from a list of strict type variables. It takes a string with the names of types of variables that the current object should have. It only allows setting such variables to values of the specified types. The variables may not be unset.