Several ways to store images in MySQL database

Several ways to store images in MySQL database

Usually the pictures uploaded by users need to be saved in the database.

There are generally two solutions:

1. Store the path where the picture is saved in the database;

2. Write the image directly into the database field in the form of a binary data stream.

Here are the specific methods:

1. Save the upload path of the picture to the database:

  string uppath="";//Used to save the image upload path//Get the file name of the uploaded image string fileFullname = this.FileUpload1.FileName;
  //Get the time when the picture was uploaded. Using the time as the name of the picture can prevent the picture from having the same name string dataName = DateTime.Now.ToString("yyyyMMddhhmmss");
  //Get the image file name (without extension)
  string fileName = fileFullname.Substring(fileFullname.LastIndexOf("\\") + 1);
  //Get the image extension string type = fileFullname.Substring(fileFullname.LastIndexOf(".") + 1);
  //Judge whether it is the required formatif (type == "bmp" || type == "jpg" || type == "jpeg" || type == "gif" || type == "JPG" || type == "JPEG" || type == "BMP" || type == "GIF")
  {
  //Upload the image to the folder of the specified path this.FileUpload1.SaveAs(Server.MapPath("~/upload") + "\\" + dataName + "." + type);
  //Save the path to a variable, and save the value of the variable to the corresponding field in the database uppath = "~/upload/" + dataName + "." + type;
  }

2. Save the image directly to the database as a binary data stream:

Reference the following namespace:

    using System.Drawing;
  using System.IO;
  using System.Data.SqlClient;
  When designing a database, the corresponding field type in the table is iamge
  save:
  //Picture path string strPath = this.FileUpload1.PostedFile.FileName.ToString ();
  //Read the image FileStream fs = new System.IO.FileStream(strPath, FileMode.Open, FileAccess.Read);
  BinaryReader br = new BinaryReader(fs);
  byte[] photo = br.ReadBytes((int)fs.Length);
  br.Close();
  fs.Close();
  //Save in SqlConnection myConn = new SqlConnection("Data Source=.;Initial Catalog=stumanage;User ID=sa;Password=123");
  string strComm = " INSERT INTO stuInfo(stuid,stuimage) VALUES(107,@photoBinary )"; //Operate database statements and modify SqlCommand as needed myComm = new SqlCommand(strComm, myConn);
  myComm.Parameters.Add("@photoBinary", SqlDbType.Binary, photo.Length);
  myComm.Parameters["@photoBinary"].Value = photo;
  myConn.Open();
  if (myComm.ExecuteNonQuery() > 0)
  {
  this.Label1.Text = "ok";
  }
  myConn.Close();
  Read:
  ...connect to the database string omitting mycon.Open();
  SqlCommand command = new
  SqlCommand("select stuimage from stuInfo where stuid=107", mycon); //Modify the query statement as needed byte[] image = (byte[])command.ExecuteScalar ();
  //Specify the save path and name of the picture read from the database string strPath = "~/Upload/zhangsan.JPG";
  string strPhotoPath = Server.MapPath(strPath);
  //Save the image file according to the above path and name BinaryWriter bw = new BinaryWriter(File.Open(strPhotoPath,FileMode.OpenOrCreate));
  bw.Write(image);
  bw.Close();
  //Display the picture this.Image1.ImageUrl = strPath;
  //These two methods can be flexibly selected according to actual needs.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Should nullable fields in MySQL be set to NULL or NOT NULL?
  • The difference between char, varchar and text field types in MySQL
  • MySQL database migration quickly exports and imports large amounts of data
  • Shell script to operate MySQL database to delete duplicate data
  • MySQL implements a solution similar to Oracle sequence
  • mysql code to implement sequence function
  • Can't connect to local MySQL through socket ''/tmp/mysql.sock'' solution
  • A complete list of commonly used MySQL functions (classified and summarized)
  • Use MySQL master-slave configuration to achieve read-write separation and reduce database pressure
  • MySQL sql_mode analysis and setting explanation

<<:  Virtual Box tutorial diagram of duplicating virtual machines

>>:  jQuery implements form validation

Recommend

JavaScript operation elements teach you how to change the page content style

Table of contents 1. Operation elements 1.1. Chan...

The difference between datatime and timestamp in MySQL

There are three date types in MySQL: date(year-mo...

HTML markup language - reference

Click here to return to the 123WORDPRESS.COM HTML ...

3 ways to create JavaScript objects

Table of contents 1. Object literals 2. The new k...

Detailed explanation of CSS image splicing technology (sprite image)

CSS image splicing technology 1. Image stitching ...

Vue uses canvas handwriting input to recognize Chinese

Effect picture: Preface: Recently, I was working ...

Detailed explanation of the installation steps of the MySQL decompressed version

1. Go to the official website: D:\mysql-5.7.21-wi...

Vue3.0 adaptive operation of computers with different resolutions

First we need to install some dependencies npm i ...

How to implement element floating and clear floating with CSS

Basic Introduction to Floating In the standard do...

MySQL 8.0.16 installation and configuration graphic tutorial under macOS

This article shares the installation and configur...

A brief discussion on HTML doctype and encoding

DOCTYPE Doctype is used to tell the browser which...

Use CSS's clip-path property to display irregular graphics

clip-path CSS properties use clipping to create t...

Getting Started Tutorial on Using TS (TypeScript) in Vue Project

Table of contents 1. Introducing Typescript 2. Co...

How to add a column to a large MySQL table

The question is referenced from: https://www.zhih...