All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sqlite.ZeroBlob Maven / Gradle / Ivy

The newest version!
/*
 * The author disclaims copyright to this source code.  In place of
 * a legal notice, here is a blessing:
 *
 *    May you do good and not evil.
 *    May you find forgiveness for yourself and forgive others.
 *    May you share freely, never taking more than you give.
 */
package org.sqlite;

/**
 * Zeroblobs are intended to serve as placeholders for BLOBs whose content is later written using incremental BLOB I/O routines.
 * @see Stmt#bindZeroblob(int, int)
 * @see Stmt#bindByIndex(int, Object)
 */
public class ZeroBlob {
	// length of BLOB
	public final int n;

	/**
	 * @param n length of BLOB
	 */
	public ZeroBlob(int n) {
		this.n = n;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy