sql - Are there any free/open source databases which can properly store arrays? -


i looking free/open source database can store (multi-dimensional) arrays.

once array stored in database, items in array should searchable within database. means, don't want serialize it.

it should able run under linux (suse), , want use python , php.

in standard sql, can do

create table myarray (     rowindex integer,     colindex integer,     value    /* whatever type array elements have */,     unique (rowindex, colindex) ); 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -