How can i encrypt access .mdb file ,make it .mde and add password .what is the connection string in C#,how can i access it and how can i make backup file.

Recommended Answers

All 2 Replies

>How can i encrypt access .mdb file ,make it .mde and add password

Exploring Microsoft Access Security.

>what is the connection string in C#

The connection string that includes the source database name, and other parameters needed to establish the initial connection.

>how can i access it

ADO.NET Oledb provider classes.

>and how can i make backup file.

xcopy.

To encrypt access take a look at this:

http://support.microsoft.com/kb/305542

can you post your string??

String connStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + HttpContext.Current.Server.MapPath("App_Data/db1.mdb");
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.