One option is ADO.NET using the SqlConnection and SqlCommand classes that are wrappers around the Sql Server provider. Another option is LINQtoSQL which is my preference and others are OleDB and ODBC which are not worth considering since the first two will give better performance and integration.
There's nothing to stop you doing a mix of traditional ADO.NET and LINQ in your web app, but the nice thing about LINQ is that is effectively builds your data layer entities for you making the data returned from the db nice and easy to work with. LINQ also provides good support for SQL Server stored procs and functions
The setup is true client / server when you consider the web application to be the client and the Sql server to be the server, but there's no reason why the Sql Server and the web application must be on the same box and anyone worth their salt developing a public facing web site (whatever the technology choice) would never implement a setup like this because there's a potential security risk in putting your db on a public facing box.
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Reply to: .net question
Collapse
You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:
- You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
- You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
- If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.
Logging in...
Previously on ".net question"
Collapse
-
ado.net
Web app running on IIS opens a connection to the SQL Server using ado
Creates a ado recordset. puts the SQL you want in it. open it and then scroll through the results.
It all get complicated when those fancy controls which can bind to the data come into play.
I think there are plenty of examples on www.asp.net
Leave a comment:
-
all the database querying should be done in the .Net web application running on the web server, the results are then passed to the users browser.Originally posted by EternalOptimist View Posta .net web app, using a sql server 2005 backend
How does it perform queries
does it use pass through ?
is it true client server ?

The end users PC should never be making a direct connection to the database
Leave a comment:
-
.net question
a .net web app, using a sql server 2005 backend
How does it perform queries
does it use pass through ?
is it true client server ?
Tags: None
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Why contractors keep putting off their pension (and why I'm one of them) Today 02:43
- HMRC loan charge settlement offer: 3 things to check before you sign Yesterday 07:41
- HMRC standstill agreements extended to 72 months: why the term's doubled, and what to check before signing Jul 31 05:53
- Who owns the loans? Inside the mystery of the loan charge recall scandal Jul 30 06:20
- Umbrella company winding-up petitions in 2026: the practical guide for contractors Jul 29 05:29
- Payments on Account deadline: what contractors must do before July 31st — maybe for the final few times Jul 28 08:01
- Andy Burnham's first 100 days: five things contractors need from the new PM Jul 27 00:53
- Starmer vs Burnham on housing: What their rival plans mean for your contractor mortgage Jul 22 00:59
- Burnham's housing vision vs. Starmer's home-buying reforms: what it means for your contractor mortgage Jul 22 00:59
- In Khalil v Innovate Transport, a limited company contractor wasn’t a worker and was on £2.30 — not £230 Jul 21 07:58

Leave a comment: