radare2/libr/db/TODO
pancake 25dceb21a8 * Initial vapi for r_db
- Added vala example using r_db (db.vala)
* Fix segmentation fault in db.c when adding nodes with
  no keys defined. (-1)
* Added vala example
* Added r_db to the default build list
* Added r_th, r_bp and r_db in pkgconfig
2009-07-21 22:59:34 +00:00

26 lines
628 B
Plaintext

* Return FALSE when adding two elements with the same
attributes (get before add) if the db is unique
// not necessary, we can just do this by manually checkingc
* Benchmarking
- Compilation support for profiling memory usage
- Compare performance against sqlite
* Import/export from/to SQL
* SQL support
CREATE TABLE flags (
name char(25) PRIMARY KEY,
offset ut64,
);
SELECT * FROM flags WHERE offset == 0x8048000;
CREATE VIEW flagwindow AS SELECT * FROM flags WHERE offset>0 and offset<100
DROP TABLE flags
INSERT INTO flags (name, offset) VALUES ("patata", 33)
UPDATE flags SET offset=33 WHERE offset==20