Esempio n. 1
0
 /// <summary>
 /// Sets the connection string.
 /// </summary>
 /// <param name="css">The CSS.</param>
 /// <remarks>Documented by Dev05, 2010-02-03</remarks>
 public void SetConnectionString(ConnectionStringStruct css)
 {
     con = css;
     if (con.Typ == DatabaseType.MsSqlCe)
     {
         dbUser.SetConnectionString(con);
     }
     else
     {
         xmlUser.SetConnectionString(con);
     }
 }