Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DbView"/> class.
 /// </summary>
 /// <param name="connection">The MySQL Workbench connection to a MySQL server instance selected by users.</param>
 /// <param name="name">The name of the MySQL database object.</param>
 public DbView(MySqlWorkbenchConnection connection, string name)
     : base(connection, name)
 {
     ImportParameters = new ImportDataParams(name);
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DbProcedure"/> class.
 /// </summary>
 /// <param name="connection">The MySQL Workbench connection to a MySQL server instance selected by users.</param>
 /// <param name="name">The name of the MySQL database object.</param>
 public DbProcedure(MySqlWorkbenchConnection connection, string name)
     : base(connection, name)
 {
     ImportParameters = new ImportDataParams(name);
     Parameters       = null;
 }