sql >> Databasteknik >  >> RDS >> Sqlserver

Hur strömmar man data från/till SQL Server BLOB-fält?

Här är ett exempel för att läsa data i bitar:

    using (var conn = new SqlConnection(connectionString))
    using (var cmd = conn.CreateCommand())
    {
        conn.Open();
        cmd.CommandText = "select somebinary from mytable where id = 1";
        using (var reader = cmd.ExecuteReader())
        {
            while (reader.Read())
            {
                byte[] buffer = new byte[1024]; // Read chunks of 1KB
                long bytesRead = 0;
                long dataIndex = 0;
                while ((bytesRead = reader.GetBytes(0, dataIndex, buffer, 0, buffer.Length)) > 0)
                {
                    byte[] actual = new byte[bytesRead];
                    Array.Copy(buffer, 0, actual, 0, bytesRead);
                    // TODO: Do something here with the actual variable, 
                    // for example write it to a stream
                    dataIndex += bytesRead;
                }
            }

        }
    }


  1. Räkna summor efter år och månad

  2. Ansluter till SQL Server 2012 med sqlalchemy och pyodbc

  3. Oracle Data Access FileNotFound:Oracle.DataAccess.Common.Configuration.Section.xsd

  4. VB.NET:Hämta en bild (blob) från MySQL DB