frukeus
asked on
VB.NET reorder inline variable
Pardon my newbie question:
How do I reorder the string to improve readability by having the variable at the end?
Dim str as String
String = "SELECT " & col1 & "," & col2 & "," & col3 & " FROM table
Eg.
String = "SELECT {1}, {2}, {3} FROM Table", col1, col2, col3
How do I reorder the string to improve readability by having the variable at the end?
Dim str as String
String = "SELECT " & col1 & "," & col2 & "," & col3 & " FROM table
Eg.
String = "SELECT {1}, {2}, {3} FROM Table", col1, col2, col3
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.