Number of bytes in the blob or string at row i

Property definitions

sqlite3 $ NativeStatement :: column_bytes
	# Number of bytes in the blob or string at row `i`
	fun column_bytes(i: Int) : Int `{
		return sqlite3_column_bytes(self, i);
	`}
lib/sqlite3/native_sqlite3.nit:102,2--105,3