Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
2k views

Ad hoc queries vs stored procedures vs Dynamic SQL

Ad hoc queries vs stored procedures vs Dynamic SQL. Can anyone say pros and cons? Best regards, Kristaps
2
votes
5answers
137 views

Best way to store SQL in variables

Currently I put my query in a variable like this. query = @" select top 1 u.UserID from dbo.Users u where u.SystemUser = 1 ...
2
votes
2answers
358 views

SubSonic How to Execute a SQL Statement?

My site is using Subsonic 2.2 on my site. I have 1 weird situation where I need to run some ad-hoc SQL statements. public IList<string> GetDistincList(string TableName, string FieldName) { ...
0
votes
0answers
11 views

Ad hoc access to OLE DB provider 'Microsoft.ACE.OLEDB.12.0'

I am trying to populate the sql table using OpenRowSet function, source for data is a excel file . This code is executed from Windows NT service. Code executes fine till the time Windows Service ...
0
votes
1answer
104 views

web form to generate ad-hoc sql statements

I have a task to build asp.net C# web form to allow end user to generate sql queries. Very similar to this one: EasyQuery.NET WebForms However I'm not allowed to use any 3rd party DLL's or spend ...