SQL statement to take a string value after FROM??
Database
2
Posts
2
Posters
0
Views
1
Watching
-
How can I get the following SQL statement to take a string value after FROM. SqlString = "SELECT * " "FROM ?????"; The string name is strFolderOpen and this will hold the name of the Access database to open. Thanks, Aoife
What language are you doing this in, VB, Javascript, C++ This should do it in VB:
SqlString = "Select * From '" & strFolderOpen & "'"
Let me know... HTH Nick Parker