No, you cannot, at least not as you are.
Perhaps you can serialize it to a string. If it consists entirely of arrays, simple objects, and other types of data supported by the JSON format (which is likely to do if it is data provided by the user (the main exception if the binaries are loaded)), then you can use the JSON serializer to do this. Modern browsers provide a JSON object for this purpose, and json2.js will be a polyfill for older browsers. Then you can save the row in the database.
Without breaking it down into separate parts, it discards many of the benefits of using a relational database (i.e. relationships and the ability to perform useful searches).
source share