V4NET and SQL-Binding of Pictures.

Starting from 4.8 build you may pass pictures as a binded value to the queries using V4NET ADK.

Something like this one:

private Image[] mArrBind = new Image[1];

mArrBind[0] = Image.FromFile(“pict1.jpg”);

mDatabase.SqlExecute( “INSERT INTO t1 VALUES (:1)”, mArrBind );

A new V4NET example has been added – SQL_Field_Picture_Binding.