OQGRAPH Overview
An overview of the OQGRAPH storage engine, which allows for handling hierarchies and graph structures using SQL.
Installing
Creating a Table
Example with origin and destination nodes only
CREATE TABLE oq_backing (
origid INT UNSIGNED NOT NULL,
destid INT UNSIGNED NOT NULL,
PRIMARY KEY (origid, destid),
KEY (destid)
);Manipulating Weight
Last updated
Was this helpful?

