Aspose.Words.Examples.CSharp.Loading_Saving.LoadAndSaveDocToDatabase.ReadFromDatabase C# (CSharp) Метод

ReadFromDatabase() публичный статический Метод

public static ReadFromDatabase ( string fileName, System.Data.OleDb.OleDbConnection mConnection ) : Document
fileName string
mConnection System.Data.OleDb.OleDbConnection
Результат Document
        public static Document ReadFromDatabase(string fileName, OleDbConnection mConnection)
        {
            // Create the SQL command.
            string commandString = "SELECT * FROM Documents WHERE FileName='" + fileName + "'";
            OleDbCommand command = new OleDbCommand(commandString, mConnection);

            // Create the data adapter.
            OleDbDataAdapter adapter = new OleDbDataAdapter(command);

            // Fill the results from the database into a DataTable.
            DataTable dataTable = new DataTable();
            adapter.Fill(dataTable);

            // Check there was a matching record found from the database and throw an exception if no record was found.
            if (dataTable.Rows.Count == 0)
                throw new ArgumentException(string.Format("Could not find any record matching the document \"{0}\" in the database.", fileName));

            // The document is stored in byte form in the FileContent column.
            // Retrieve these bytes of the first matching record to a new buffer.
            byte[] buffer = (byte[])dataTable.Rows[0]["FileContent"];

            // Wrap the bytes from the buffer into a new MemoryStream object.
            MemoryStream newStream = new MemoryStream(buffer);

            // Read the document from the stream.
            Document doc = new Document(newStream);

            // Return the retrieved document.
            return doc;
        }
        // ExEnd:ReadFromDatabase