Hello,
I'm trying to code smthg in ND 4.1 to let the user to insert new records in the 
database.
The primary key for those records would be an Index autonumber (I assume it should 
automatically be generated when the record gets inserted into the database).  
However, something in my code doesn't work.  Does anybody know what's wrong?  
Thanks in advance for your help.
Rimma

String sql = "INSERT INTO textArticles (Date, BusinessID, Title_Quote, Source_Name, 
Article_Text) ";
                
                sql = sql + "VALUES (";
                sql = sql + "'" + date + "'";
                sql = sql + ", " + businesses + "";
                sql = sql + ", '" + titleQuote + "'";
                sql = sql + ", '" + sourceName + "'";
                sql = sql + ", '" + articleText + "'";
                sql = sql + ")";
_________________________________________________________________________

For help in using, subscribing, and unsubscribing to the discussion
forums, please go to: http://www.netdynamics.com/support/visitdevfor.html

For dire need help, email: [EMAIL PROTECTED]

Reply via email to