radare2/libr/db
pancake 14f85bd76f * Import Glyn Kennington's patch for the build system
- Use absolute paths everywhere and simplify Makefiles
2011-11-03 11:49:50 +01:00
..
sdb * Initial support for Android NDK build (fix build) 2011-09-25 06:57:13 +02:00
t * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
db.c * Initial import of external dependency sdb in r_db 2011-09-03 05:09:31 +02:00
Makefile * Fix mingw32 build 2011-09-14 12:37:26 +02:00
pair.c * Build syscall/d at compile time 2011-09-06 00:38:56 +02:00
README * Added r_db_delete() method in r_db api 2009-06-18 13:10:26 +00:00
table.c * Fix some possible-use-of-uninitialized-variables 2011-10-20 16:36:00 +02:00
TODO * Initial import of the hashtable implementation of WayLand 2011-03-17 19:05:39 +01:00

+------+
| r.db | Simple and performance-friendly relational database
+------+

The database of r.db is based on index tables of key-size depth.
The key is the index of the key-bucket array which opens the search
space to a single key.

Items are directly sorted

  [255] key buckets
    |
    `-> [0..255]           -----.
         |     \                |
         |      \               |
     [0..255]  [0..255]         |
         |        |             |-- size of key (depth)
     [0..255]    ...            |
         |                      |
     [0..255]              -----'

OPERATIONS
==========

   ADD

   DELETE

     r_db_delete_by_key(db, K_ID, &tmp) # specify more than one key?

   ITERATE
   

+----------+
| r.db.sql | The SQL frontend for r.db
+----------+

 - Compiles simple SQL-like sentences into a set of r.db queries

void **iter = r_db_sql_query("select * from flags");
while(r_db_ptr(iter)) {
	struct foo_t *foo = r_db_ptr(iter);
	iter = r_db_ptr_next(iter);
}