Hey SS - how goes? As to database - it depends :-)
For a local database I'd use browser local storage (or, depending on your browser support matrix the IndexedDatabaseAPI - this is in Win8/IE10 and IE10
will be on Win7 t some point soon)
For a remote database you need something that you can communicate with from a web page over HTTP - these days the oData protocol seems to be the most popular way to do this - see
http://msdn.microsoft.com/en-us/data/gg192995.aspx for an example with SQL Server from Microsoft (and SQL Azure also supports oData access) but I'm sure other vendors will offer their own
implementations.
Hey SS - how goes? As to database - it depends :-)
For a local database I'd use browser local storage (or, depending on your browser support matrix the IndexedDatabaseAPI - this is in Win8/IE10 and IE10
will be on Win7 t some point soon)
For a remote database you need something that you can communicate with from a web page over HTTP - these days the oData protocol seems to be the most popular way to do this - see
http://msdn.microsoft.com/en-us/data/gg192995.aspx for an example with SQL Server from Microsoft (and SQL Azure also supports oData access) but I'm sure other vendors will offer their own
implementations.