Link to home
Create AccountLog in
Avatar of Peter Kiers
Peter KiersFlag for Netherlands

asked on

Save the data as BLOB to a database

Hi,

I have this code to save the data from a txtbox into a database column called Data.
But I want it to be saved as blob data?

Who can help me?

Peter
private void txtbNotes_TextChanged(object sender, EventArgs e)
        {
            TreeNode node = tvNotes.SelectedNode;
            DataRow ParentRow = null;
            ParentRow = (DataRow)node.Tag;
            ParentRow["Data"] = txtbNotes.Text;
        }

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of systan
systan
Flag of Philippines image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer