Example #1
0
 /// <summary>
 /// Constructs an instance of this class.
 /// </summary>
 /// <param name="nConstraint">
 /// The number of <see cref="SQLiteIndexConstraintUsage" /> instances
 /// to pre-allocate space for.
 /// </param>
 internal SQLiteIndexOutputs(int nConstraint)
 {
     constraintUsages = new SQLiteIndexConstraintUsage[nConstraint];
 }
 public sqlite3_index_constraint_usage(
     SQLiteIndexConstraintUsage constraintUsage
     )
     : this()
 {
     if (constraintUsage != null)
     {
         argvIndex = constraintUsage.argvIndex;
         omit = constraintUsage.omit;
     }
 }