What is indexing in asp.net
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Can any one pls tell me me what is indexing in asp.net and what is the difference betn ecute qurey and execute non query . Patel Neelesh A
I suppose that you mean indexing in the database. An index is a lookup table that you add to a table, that increases performance when you search for items using the field that you put in the index. ExecuteNonQuery executes the query in the database, but it does not create a result. It's used for update- and delete-queries that does not return any records. --- b { font-weight: normal; }