Adam!!
Stmt1> rs.open "SELECT * FROM Fixtures", Application("golf_ConnectionString"), 1, 3
the connection string made by above in ur case(con.Open = "Provider=SQLOLEDB; Data Source = 100.100.100.100; Initial Catalog = db_golf; User Id = db_user; Password=123456" )
wont reflect "Stmt1" ,because it is using connection string from application variable.
if you want to use ur newly created connection string
then u must pass it to rs.open method to reflect
Other alternative is that u can lock the application varaible and set the new connection string ,then unlock it
Hope this will help you
Cheers :)
vinod
|