
- Forum
- Programming Talk
- ASP
- how can i connect the database
how can i connect the database
This is a discussion on how can i connect the database within the ASP forums, part of the Programming Talk category; hi friends i has a problem when the database of sql sever2005 is connected with asp.net plz send the code ...
-
how can i connect the database
hi friends
i has a problem when the database of sql sever2005 is connected with asp.net plz send the code urgent
-
To connect to the database sqlserver with sql server authentication
sqlconnection cn=new sqlconnection("data source=xxx;database=yyy;user id=sa;password=zzz");
where xxx=server name, yyy= database name, zzz= password for sqlserver while u connect.
if you wanna connect with windows authentication:
sqlconnection cn=new sqlconnection("data source=xxx;database=yyy;trusted_connection=yes");
where xxx=server name, yyy= database name

Reply With Quote





