Encryption in SQL Server mobile OLEDB

This article describes various commands that can be used in SQL mobile server.
  • 2530
Introduction

Encryption is the conversion of data into a different form that is not understandable by a lame/unauthorized user. It is one of the strongest tools for maintaining security of the database as data is the most important perspective of any organization or person. So in order to implement it we can use the following string .

Data Source=Companydata.sdf;Encrypt Database=True;Password=myPassword;File Mode=shared read;Persist Security Info=False

NOTE: The section of the string: Encrypt Database="True" pair is not mandatory to use.

Further Readings
 
You may also want to read these related articles.

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.