Hi I'm new to this and want to know if i can create a connection without passing password in connection string.
I can't use windows authentication because most of users don't have access to database.
$ConnectionString="Data Source=$SqlServer;Initial Catalog=$Database; Integrated Security=True;"
So have to go with SQL Authentication
$connString = "Data Source=$SqlServer;Database=$Database;User ID=$SqlAuthLogin;Password=$SqlAuthPw"
But not to pass password in connection string . Is it possible by any way. If not then also let me know.
Any help will be thankfull.