× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



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 thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.