pbms_is_blob_reference
Description
pbms_bool pbms_is_blob_reference ( PBMS pbms ,const char * blob_ref )
Checks the format of the BLOB reference and returns true if it looks like a valid reference. This doesn't guarantee that the reference references a valid BLOB on the PBMS BLOB streaming server only that the format of the BLOB reference is correct.
Parameters
pbms
A valid PBMS connection handle.
blob_ref
The possible BLOB reference to be checked.
Return Values

Returns TRUE if the BLOB reference looks OK.

Returns FALSE if the BLOB reference is not valid.

Example
	pbms = pbms_connect("localhost", 8080, "aDatabase");

	// Create a BLOB
	pbms_put_data(pbms, "bobtest", blob_ref, strlen("A tiny BLOB"), "A tiny BLOB");
	
	
	if (pbms_is_blob_reference(pbms, blob_ref))
		printf("Yes \"%s\" is a blob reference as expected.\n", blob_ref );
	else
		printf("OOPS! \"%s\" is NOT a blob reference as expected. There is a bug in the PBMS API. :(\n", blob_ref );
		
	if (pbms_is_blob_reference(pbms, "myBLOB"))
		printf("OOPS! \"BLOB\" should not be a blob reference. There is a bug in the PBMS API. :(\n");
	else
		printf("No \"myBLOB\" is not a BLOB reference.\n" );
		
	pbms_close(pbms);
		
Related functions
pbms_get_blob_size()