It shows that you are unregistered. Please register with us by clicking Here
![]() |
|
![]() |
![]() | Register - FAQ - Today's Posts - New Posts - Support - Search | ![]() |
|
|
#1 (permalink) |
|
Junior Member
Join Date: Jul 2006
Age: 48
Posts: 25
|
If you really did intend to use SQL Server security because that's how your company or department has set up sccess to your SQL Server (perhaps because some clients are non-Microsoft), then you need to specify a user name and password in the connection string as shown here:
thisConnection.ConnectionString= _ "server = (local)\netsdk;" & _ "User id = sa;" & _ "password = x1y2z3" The sa user name is the default system administrator account for SQL server. If a specific user has been set up, such as george or payroll, then specify that name. The password for sa is set when SQL Server is installed. If the user name you use has no password, you can omit the password clause entirely or specify an empty password, as follows: password =; However, a blank password is bad practice and should be avoided, even in a test enviroment |
|
|
|
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| What is the difference between a server-side include and server.Execute? | agaba175 | ASP | 0 | 08-05-2006 08:37 PM |
| Why Congress Won't Fix Social Security | janedu | All Things General | 0 | 08-01-2006 10:51 PM |
| Security & Surveillance systems | claire | General Business Issues | 1 | 07-27-2006 09:34 AM |
| What is code access security (CAS)? | agaba175 | .NET | 1 | 07-21-2006 01:24 PM |