TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Goran Bibic
484
2.9k
196.8k
Retrieve pdf file from sql c#
Jul 31 2018 1:39 AM
Some help please
Insert into sql
byte[] filedata = null;
MemoryStream ms =
new
MemoryStream();
filedata = ms.GetBuffer();
axAcroPDF1.src = LocalEncoding.GetString(ms.ToArray());
using
(SqlConnection openCon =
new
SqlConnection(cs))
{
string saveStaff =
"declare @maxNo integer = 0 select @maxNo = isnull(max(number), 0) from [dbo].[documents]; Set @maxNo=@maxNo+1; INSERT into dbo.documents (number, file_location, pdf_file) VALUES (@maxNo,@file_location,@pdf_file)"
;
using
(SqlCommand querySaveStaff =
new
SqlCommand(saveStaff))
{
querySaveStaff.Connection = openCon;
querySaveStaff.Parameters.Add(
"@file_location"
, SqlDbType.VarChar, 255).Value = file_locationTextBox.Text;
querySaveStaff.Parameters.AddWithValue(
"@pdf_file"
,SqlDbType.VarBinary).Value=filedata;
openCon.Open();
querySaveStaff.ExecuteNonQuery();
openCon.Close();
}
}
}
In Selection change datagrid put this
try
{
if
(documentsDataGridView.SelectedRows[0].Cells[
"pdf_file"
].Value != null)
{
byte[] ap = (byte[])documentsDataGridView.SelectedRows[0].Cells[
"pdf_file"
].Value;
MemoryStream ms =
new
MemoryStream(ap);
axAcroPDF1.src = LocalEncoding.GetString(ms.ToArray());
}
else
{
axAcroPDF1.src = null;
}
}
catch
{
axAcroPDF1.src = null;
}
Error is when retrieve file...(no have error) noting hapend....what I wrong?
I think at line 3 to line 9
Reply
Answers (
7
)
How to find the middle number in asp.net c#?
Read PDF file from sql to AxAcroPDF c#