| EAPUtilWriteBlobToDatabase Method  | 
 
            Update a column in a single record in the database with binary data.
            
 
    Namespace: 
   NetQuarry
    Assembly:
   EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
 Syntax
Syntaxpublic static void WriteBlobToDatabase(
	IDatabase db,
	string table,
	string column,
	string filter,
	byte[] data
)
Public Shared Sub WriteBlobToDatabase ( 
	db As IDatabase,
	table As String,
	column As String,
	filter As String,
	data As Byte()
)
Parameters
- db
- Type: NetQuarryIDatabase
 The database to which to write.
- table
- Type: SystemString
 The table to update.
- column
- Type: SystemString
 The column to update.
- filter
- Type: SystemString
 The filter used to identify the record to update.
- data
- Type: SystemByte
 The blob data to write.
 See Also
See Also