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

SAP Web Service from .NET via WCF -

Optimized Line drawing in QT -

datetime - str to time in python -