I tried to insert a text file into my database, using this code:
INSERT INTO test.table (url_address, html)
VALUES ('abc', LOAD_FILE('C:\Documents and Settings\eran\Desktop\1.txt'));
However, I get null in the html column. How can I get the data from the text file to my database?