Alan, Wednesday, October 23, 2002, 2:06:05 PM, you wrote: AM> Is it possible to update a field using SQL with the contents of a text file AM> previoously written to disk?
AM> I want to update a mediumtext field with the contents of c:\data\mytext.txt AM> file. AM> update mytable set mymediumtext= filecontents where id=number... ? UPDATE mytable SET mymediumtext=LOAD_FILE('c:\data\mytext.txt') ... You can find desription of LOAD_FILE() function here: http://www.mysql.com/doc/en/String_functions.html -- For technical support contracts, goto https://order.mysql.com/?ref=ensita This email is sponsored by Ensita.net http://www.ensita.net/ __ ___ ___ ____ __ / |/ /_ __/ __/ __ \/ / Egor Egorov / /|_/ / // /\ \/ /_/ / /__ [EMAIL PROTECTED] /_/ /_/\_, /___/\___\_\___/ MySQL AB / Ensita.net <___/ www.mysql.com --------------------------------------------------------------------- Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php