G
Guest
Hi
This question has been asked b4 on these newsgroups. I can't find a clear example
I have a byte array called signature. I'd like to store this byte array in a SQL server varbinary column and then read it back again. I have the following code snippet
Assumptions: sqlCon is a valid SQL connection initialized elsewher
public void InsertSalesTransaction(string SalesPersonID, byte[] signature
string sCmd = "INSERT INTO SalesTransactions "
sCmd += "(SalespersonID,Signature)"
sCmd += " VALUES ('" + SalesPersonID + "'," + ???
SqlCommand sqlCmd = new SqlCommand (sCmd, sqlCon)
sqlCmd.ExecuteNonQuery() > 0
HOW do you insert the signature byte array
Can someone provide me with an example
Thanks a lo
This question has been asked b4 on these newsgroups. I can't find a clear example
I have a byte array called signature. I'd like to store this byte array in a SQL server varbinary column and then read it back again. I have the following code snippet
Assumptions: sqlCon is a valid SQL connection initialized elsewher
public void InsertSalesTransaction(string SalesPersonID, byte[] signature
string sCmd = "INSERT INTO SalesTransactions "
sCmd += "(SalespersonID,Signature)"
sCmd += " VALUES ('" + SalesPersonID + "'," + ???
SqlCommand sqlCmd = new SqlCommand (sCmd, sqlCon)
sqlCmd.ExecuteNonQuery() > 0
HOW do you insert the signature byte array
Can someone provide me with an example
Thanks a lo