hi
I have created database on my web server(where I host my web site) and now I want to access that database through my window application.
Can I Do this in C# window application?
Is the same concept of local sql server connection in window application?
let me know if any one done like this,
regards
mandar
Loading
Niradhip ChakrabortyPosted Sep 9, 2009, 8:30 AM
CheckOut one demo connection string with Ip address below.
server=192.168.0.15,1433;uid=sa;pwd=gessbt;database=Booth Tracker;Max Pool Size=500;Connect Timeout=5000;
Make sure your server should have public ip.
Lakhan PalPosted Sep 9, 2009, 8:10 AM
Yes You can use the same DB in your Window Application.
For that you need internet Connection and DB Credentials.
Create a Connection string in App.config of Window application and then use in similar way as you used it in your web application.