I am trying to create a SQL that uses JUST a SQLSTRINGCONNECT() to access the SQL server. I cant open the view when I dont have a connection inculded with the project. this is the code im trying to use for now...
store SQLSTRINGCONNECT("driver={SQL SERVER};SERVER=localhost;UID=sa;PWD=pass;DATABASE=table;Trusted_Connection=No"
to sqlserver
open database view
use remoteview
tableupdate()
It fails when it trys to execute use remoteview because it cant find the connection..
ive also tried
sqlserver = SQLSTRINGCONNECT("driver={SQL SERVER};SERVER=localhost;UID=sa;PWD=pass;DATABASE=table;Trusted_Connection=No"
which also does not work.. how do you make it so the view can see the connection created with sqlstringconnect??