io.permazen.kv.sql.createTable-oracle.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of permazen-kv-sql Show documentation
Show all versions of permazen-kv-sql Show documentation
Support for Permazen key/value store implementation based on SQL databases.
CREATE TABLE KV (
kv_key VARBINARY(4194304) NOT NULL,
kv_value VARBINARY(4194304) NOT NULL,
PRIMARY KEY (kv_key)
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy