RE: adding a large file to a database....

2005-01-24 Thread J.R. Bullington
I have found that MySQL really doesn't like the rs.Update and rs.AddNew features like SQL and Access do. You are better off with the INSERT INTO tblname (`rs.Flds`) VALUES ('objitem') or the UPDATE tblname SET column1=value1,column2=value2,... statements with CONPUBS.EXECUTE. It's a pain to

RE: adding a large file to a database....

2005-01-24 Thread Artem Koltsov
@lists.mysql.com Cc: 'Mark Mchugh' Subject: RE: adding a large file to a database I have found that MySQL really doesn't like the rs.Update and rs.AddNew features like SQL and Access do. You are better off with the INSERT INTO tblname (`rs.Flds`) VALUES ('objitem') or the UPDATE tblname SET