sql >> Database teknologi >  >> RDS >> Sqlserver

Hvordan indsætter/henter jeg Excel-filer til varbinary(max) kolonne i SQL Server 2008?

Hvis du vil gøre det i lige ADO.NET, og dine Excel-filer ikke er for store, så de kan passe ind i hukommelsen på én gang, kan du bruge disse to metoder:

// store Excel sheet (or any file for that matter) into a SQL Server table
public void StoreExcelToDatabase(string excelFileName)
{
    // if file doesn't exist --> terminate (you might want to show a message box or something)
    if (!File.Exists(excelFileName))
    {
       return;
    }

    // get all the bytes of the file into memory
    byte[] excelContents = File.ReadAllBytes(excelFileName);

    // define SQL statement to use
    string insertStmt = "INSERT INTO dbo.YourTable(FileName, BinaryContent) VALUES(@FileName, @BinaryContent)";

    // set up connection and command to do INSERT
    using (SqlConnection connection = new SqlConnection("your-connection-string-here"))
    using (SqlCommand cmdInsert = new SqlCommand(insertStmt, connection))
    {
         cmdInsert.Parameters.Add("@FileName", SqlDbType.VarChar, 500).Value = excelFileName;
         cmdInsert.Parameters.Add("@BinaryContent", SqlDbType.VarBinary, int.MaxValue).Value = excelContents;

         // open connection, execute SQL statement, close connection again
         connection.Open();
         cmdInsert.ExecuteNonQuery();
         connection.Close();
    }
}

For at hente Excel-arket tilbage og gemme det i en fil, brug denne metode:

public void RetrieveExcelFromDatabase(int ID, string excelFileName)
{
    byte[] excelContents;

    string selectStmt = "SELECT BinaryContent FROM dbo.YourTableHere WHERE ID = @ID";

    using (SqlConnection connection = new SqlConnection("your-connection-string-here"))
    using (SqlCommand cmdSelect = new SqlCommand(selectStmt, connection))
    {
        cmdSelect.Parameters.Add("@ID", SqlDbType.Int).Value = ID;

        connection.Open();
        excelContents = (byte[])cmdSelect.ExecuteScalar();
        connection.Close();
    }

    File.WriteAllBytes(excelFileName, excelContents);
 }

Selvfølgelig kan du tilpasse dette til dine behov - du kan også gøre mange andre ting - afhængigt af, hvad du virkelig ønsker at gøre (ikke særlig klart ud fra dit spørgsmål).



  1. pl/sql-funktion kaldet, hvor mange gange?

  2. Hvorfor kan kun en superbruger OPRET UDVIDELSE hstore, men ikke på Heroku?

  3. Oracle SQL-fejl:Manglende IN- eller OUT-parameter ved index::1

  4. Transponering og aggregering af Oracle-kolonnedata