microsoft / cordova-plugin-indexedDB

Cordova plugin for IndexedDB
Other
64 stars 17 forks source link

Index names limited to only be valid SQL column names #3

Open kingIZZZY opened 9 years ago

kingIZZZY commented 9 years ago

Whereas IndexedDB proper allows for arbitrary strings (with symbols etc.) as index names, this shim only supports index names that would pass as valid SQL column names

myindex = ok my_index = ok my,index = error my+index = error my index = error etc.