(1) Will separating into file.writeline 2x keep the entire row intact in the file?
(2) I understand about #2, but can't I declare
strsql="Select blah, blah, blah from table"
then use the strsql instead of all the lines of SQL=SQL& I would need with a big query?
Be patient with me; I'm a novice in this area. Thanks
Main Topics
Browse All Topics





by: rockiroadsPosted on 2009-05-13 at 07:26:03ID: 24375190
First question, to seperate into two lines, can you not just do two write lines? SCHLNAME"" ," "COURSE"", ""TITLE"" "
file.WriteLine ""CLASS"",""SCHOOLNUM"",""
file.WriteLine"SECTION"","
SQL is already a variable!
'Code2 Sample:
SQL="select blah, blah, blah, blah....."
SQL=SQL & "blah, blah, blah....."
Can I use a variable instead? (such as strsql=?)