I'd like to insert the following to my database:
"INSERT INTO `table` (`column1`, `column2`, `column3`) VALUES (1, 2, '{"title": {"abc1":def","abc2":"def2" ...}}')";
How can I achieve that? I guess I have to escape the string but I haven't figured it out yet.