|
Brian, Is SQLMlist a variable length field? If not, then that might be your problem. If it is not a variable length field then... SQLMlist = 'insert into sswdppp ('; // SQLMlist is equal to 'insert into sswdppp( ' Notice, lots of spaces??? SQLMlist = SQLMlist + 'select pskdl1, pskdl2, pskdl3, psyear, psmdl,'; // SQLMlist is still equal to the 'insert into sswdppp( ' Fix, 1 - Make SQLMlist a varying length field, or 2 - Change to SQLMlist = 'insert into sswdppp ('; SQLMlist = %trim(SQLMlist) + 'select pskdl1, pskdl2, pskdl3, psyear, psmdl,'; Rob Berendt
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.