Ecryptioning ein SQL Express database

  • VB.NET

    Ecryptioning ein SQL Express database

    Könnten sie mir helfen wie könnte ich ein SQL Express
    database zu kriptieren mit einen password benutzing connectionstring?

    Ich benutze die folgende linies:

    ssconn.ConnectionString = "Data Source=.\SQLEXPRESS;Integrated Security=True;"

    CreateDatabase = "CREATE DATABASE i ON (NAME = i, FILENAME = '" & ssceconfilename & "')"
    Dim myCommand As New SqlCommand(CreateDatabase, ssconn)
    myCommand.ExecuteNonQuery()

    Danke für alles und entschuldigung für die language schvierigkeiten.

    --------------------------------------------------------------

    Hi!

    Could you help me how could I encrypt an SQL Express database with a password?

    The lines I currently use:

    ssconn.ConnectionString = "Data Source=.\SQLEXPRESS;Integrated Security=True;"

    CreateDatabase = "CREATE DATABASE i ON (NAME = i, FILENAME = '" & ssceconfilename & "')"
    Dim myCommand As New SqlCommand(CreateDatabase, ssconn)
    myCommand.ExecuteNonQuery()

    I managed to do the encryption with SQL CE 2.0, but how to do it with express?

    Thank you!