Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5955519
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T18:07:33+00:00 2026-05-22T18:07:33+00:00

Sorry for the supposedly easy question I am trying to insert a picture from

  • 0

Sorry for the supposedly easy question
I am trying to insert a picture from a url into the database. Here alb.picture needs to be inserted.

url = "https://graph.facebook.com/me/albums/?access_token=" + oAuth.Token;
                        json = oAuth.WebRequest(oAuthFacebook.Method.GET, url, String.Empty);
                        Albums albms = js.Deserialize<Albums>(json);
                        foreach (Album alb in albms.data)
                        {
                            alb.picture = "https://graph.facebook.com/" + alb.id + "/picture/?access_token=" + oAuth.Token;

                            FileStream fs;
                            string sfn = alb.picture;

                            //FileInfo filImage = new FileInfo(sfn);
                            m_lImageFileLength = alb.picture.Length;
                            m_barrImg = new Byte[Convert.ToInt32(m_lImageFileLength)];
               **fs = new FileStream(sfn, FileMode.Open, FileAccess.Read);**   // this is where it gives me an error abt sfn. C:\win...\sfn path not found

                             fs.Read(m_barrImg, 0, System.Convert.ToInt32(m_lImageFileLength));
                             insert_Facebook_Photos(Convert.ToInt64(ui.id), m_barrImg, alb.created_time.ToString(), alb.updated_time.ToString());
                             fs.Close();


     private void insert_Facebook_Photos(Int64 FacebookUserID, byte[] picbyte, string created_time, string updated_time)
            {
                string conString = "Data Source=HOME-590392F5B5\\SQLEXPRESSR2;Initial Catalog=FMM;Integrated Security=True";
                SqlConnection sqlConnection1 = new SqlConnection();
                sqlConnection1.ConnectionString = conString;
                SqlCommand sqlCommand1 = new SqlCommand();
                try
                {

                sqlConnection1.Open();
                //if (sqlCommand1.Parameters.Count == 0)
                {
                    sqlCommand1.CommandText = "INSERT INTO Facebook_Photos(FacebookUserID,Photo,Photo_CreatedDate,Photo_UpdatedDate) values(@ID,@Picture,@createdDate,@UpdatedDate)";
                    sqlCommand1.Parameters.Add("@ID", System.Data.SqlDbType.Int, 64);
                    sqlCommand1.Parameters.Add("@Picture", System.Data.SqlDbType.Image);
                    sqlCommand1.Parameters.Add("@createdDate", System.Data.SqlDbType.VarChar, 50);
                    sqlCommand1.Parameters.Add("@UpdatedDate", System.Data.SqlDbType.VarChar, 50);
                }
                sqlCommand1.Parameters["@ID"].Value = FacebookUserId;
                sqlCommand1.Parameters["@Picture"].Value = picbyte;
                sqlCommand1.Parameters["@createdDate"].Value = created_time;
                sqlCommand1.Parameters["@UpdatedDate"].Value = updated_time;
                sqlCommand1.ExecuteNonQuery();


            }

**fs = new FileStream(sfn, FileMode.Open, FileAccess.Read);**   // this is where it gives me an error abt sfn. C:\win...\sfn path not found
alb.picture is supposed to be inserted and How do I get the path of this image


            catch (Exception ex)
            {
                throw ex;

            }
            finally
            {
                sqlConnection1.Close();

            }

        }

Thanks
Smitha

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T18:07:34+00:00Added an answer on May 22, 2026 at 6:07 pm

    You don’t need to store the file on local harddisk. It’s faster and more reliable to read the image into a MemoryStream and write the binary data directly into database.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Sorry, I know this question is easy, but I don't know how to get
Sorry if this is a stupid question, but is there an easy way to
I am really suffering here trying to get this ajax call to work, sorry
Not a terribly good question, sorry. I have a program that needs to be
Sorry for question but I can't find answer anywhere on internet. I couldn't find
Sorry for this simple question, but I can't solve it... There is an example:
sorry for the dummy question but I cannot find a simple and clean way
Sorry but I am not sure how to ask this question but I am
Sorry if this question seems stupid, but it's stumped me for a couple days,
Sorry if my question was unclear. I got a bunch of elements and the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.