Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hibernate-like framework for C++ [closed]

I am looking for database-caching framework for C++ providing the following:

  • Generate object/table representations via some pseudo-language (macros/templates)
  • Retrieve objects from DB by key when needed
  • LRU caching
  • Immediate and delayed update of DB on object update (via getter/setter methods)
like image 747
Dmitry Khalatov Avatar asked Nov 20 '08 07:11

Dmitry Khalatov


People also ask

What is better than Hibernate?

Hibernate is mostly considered for complex apps. JDBC is a much better option, if: If an app is using a simple database that does not require to migrate, or. If the application needs data to be stored in database tables that won't require object-mapping to 2 or 2+ table versions.

Is Hibernate still used?

No, Hibernate is not deprecated.

Is Hibernate a framework?

Hibernate is an open source object relational mapping (ORM) tool that provides a framework to map object-oriented domain models to relational databases for web applications.

Why is Hibernate so popular?

It helps with intrinsic problems in interfacing otherwise incompatible databases. Java Hibernate, as an ORM tool, helps to bridge that gap between incompatible databases. Automatic SQL Query Generation - There is a common belief that developers don't need to understand how to write SQL queries.


1 Answers

Try LiteSQL and Hiberlite and see if they can be of use to you.

like image 106
activout.se Avatar answered Oct 03 '22 17:10

activout.se