how to connect database connectivity in dotNET? if suppose
SQL server?and also MS access?
Answer Posted / manish
in the sql server
using system.data.sqlclient
sqlconnection con=new
sqlconnection("server=;uid=;pwd=;database=;");
con.open();
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
What is garbage collection in .net? Explain the garbage collection process?
What are the main components in .net?
How does the generational garbage collector in the .net clr manage object lifetime? What is non-deterministic finalization?
What is the single responsibility principle?
Please explain is the jit an interpreter?
Explain the difference between the stack and the heap?
I am constantly writing the drawing procedures with system.drawing.graphics, but having to use the try and dispose blocks is too time-consuming with graphicsobjects. Can I automate this?
If a dataset contains 100 rows, how to fetch rows between 5 and 15 only?
Can a try block have nested try blocks?
Is .net core installed?
Explain the main components in .net?
What is the difference between boxing and unboxing?
What is the advantage of .net?
What is meant by globalization?
Will it go to finally block if there is no exception happened?