Exemple #1
0
 /// <summary>
 /// Constructs an instance of this class.
 /// </summary>
 /// <param name="nConstraint">
 /// The number of <see cref="SQLiteIndexConstraint" /> instances to
 /// pre-allocate space for.
 /// </param>
 /// <param name="nOrderBy">
 /// The number of <see cref="SQLiteIndexOrderBy" /> instances to
 /// pre-allocate space for.
 /// </param>
 internal SQLiteIndexInputs(int nConstraint, int nOrderBy)
 {
     constraints = new SQLiteIndexConstraint[nConstraint];
     orderBys = new SQLiteIndexOrderBy[nOrderBy];
 }
 public sqlite3_index_orderby(
     SQLiteIndexOrderBy orderBy
     )
     : this()
 {
     if (orderBy != null)
     {
         iColumn = orderBy.iColumn;
         desc = orderBy.desc;
     }
 }