can any one tel me hw to connect database connectivity of
dot NET and back end as MS access?
Answer / guest
<configuration>
<appSettings>
<add key="SqlCon" value="Data
Source=winserver;initial
Catalog=cieflnew;uid=cieflnew;pwd=cieflnew; Connection
Lifetime=0;Max Pool Size=10000;Min Pool Size=0;Connection
Reset=false;Pooling=true;Persist Security Info=False"/>
</appSettings>
<system.web>
in web.config and in code behind
sqlcommeand cmd= new sql command("Query",con);
cmd.executenonquery();
| Is This Answer Correct ? | 2 Yes | 0 No |
What is a windows process in .net?
How to create a key pair in .net?
Explain something about WebService?
Explain me what is the difference between a class and an object, and how do these terms relate to each other?
What is a .DLL and .EXE files called in .NET?
What are use of Cloud computing....?
What's singleton activation mode in .net?
How big is the datatype int in .net?
How can you clean up objects holding resources from within the code?
What are Sessions?
I have a problem in installing visual Studio 2008 on PC that have Celeron Processor ? afterAll InstallionFaied . Pls suggest me . Is it possible or not .if Yes then How ?
questions on various scenarios on exception handling? like for example.... try { a; b; ...exception occurs here...what happens...will catch execute or will finally execute...will c execute c; } catch { a; b; c; } fianlly { a; b; }