Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~155 People Reached
Favorite Forums

1 Posted Topic

Member Avatar for settu

public byte[] readFile(string index) { if (con.State == ConnectionState.Open) { con.Close(); } con.Open(); string select = "select fileindex,filename from fileData0 where fileindex= '" + index + "' "; SqlDataAdapter adap = new SqlDataAdapter(select,con); DataSet ds = new DataSet(); adap.Fill(ds, "fileData0"); byte[] filebyte = (byte[])ds.Tables["fileData0"].Rows[0]["filedata"]; string Filename = (string)ds.Tables["fileData0"].Rows[0]["filename"]; con.Close(); return …

Member Avatar for ameerbatcha
0
155

The End.