将文件插入 SQL 数据库并检索它
Posted
技术标签:
【中文标题】将文件插入 SQL 数据库并检索它【英文标题】:Inserting a file in to the SQL database and retrieving it 【发布时间】:2019-05-08 16:01:00 【问题描述】:我学校的网络服务器不允许我们使用move_uploaded_file(….)
将文件上传到它。因此,我正在尝试学习如何将 PDF 文件插入到 SQL Server 数据库中并稍后检索它。我能够使用以下代码放置 PDF 文件。但是通过浏览器部分检索文件不起作用。它只打印文件的值,不会将文件保存到我的电脑中。任何帮助将不胜感激
<?php
//Connection get established successfully
$connInfo = array(//code omitted);
$connect = sqlsrv_connect(//code omitted, $connInfo) or die(print_r(sqlsrv_errors(SQLSRV_ERR_ALL), true));
if(isset($_POST['upload'])) //This part works
// extract file name, type, size and path
$file_path=$_FILES['pdf']['tmp_name']; //pdf is the name of the input type where we are uploading files
$file_type=$_FILES['pdf']['type'];
$file_size=$_FILES['pdf']['size'];
$file_name=$_FILES['pdf']['name'];
// checks whether selected file is a pdf file or not
if ($file_name != "" && $file_type == 'application/pdf')
//PDF file may contains, images, tables, etc..
$data = base64_encode(file_get_contents($file_path));
//SQL Data type is varchar(MAX). query to update file in database.
$query="UPDATE TestTable SET Data='".$data."' WHERE ID=1";
$result = sqlsrv_query($connection, $query); //query execution
// Check if it was successful
if($result)
echo 'Success! Your file was successfully added!';
else
echo '<br>Error!:'.sqlsrv_errors();
else
echo 'Not a pdf file. Try again';
if(isset($_POST['read'])) //Does not download the file!!
//Query to fetch field where we are saving pdf file
$sql = "SELECT Data FROM TestTable WHERE ID = '1'";
$result2 = sqlsrv_query($connection, $sql); // query execution
$row = sqlsrv_fetch_object($result2); // returns the current row of the resultset
$pdf_content = $row->Data; // Put contents of pdf into variable
$fileName = time().".pdf"; // create the unique name for pdf generated
//download file from database and allows you to save in your system
header("Content-type: application/pdf");
header("Content-disposition: attachment; filename=".$fileName);
print $pdf_content;
?>
<form name="form" id="form" action="" method="post" enctype="multipart/form-data">
File: <input type="file" name="pdf" id="pdf" accept="application/pdf" title="Choose File" /><br />
<input type="submit" name="upload" id="upload" value="Upload" /><br />
<input type="submit" name="read" id="read" value="Read" />
</form>
我将文件的完整数据值保存到数据库字段中(不插入,更新现有行)。不要试图单独保存文件的路径或文本内容。这会将 PDF 文件保存到以 base64_encode 归档的数据库中。如果我在运行此代码后查看数据库的内容,我会看到该行已更新为类似于以下内容:JVBERi0xLjYNJeLjz9MNCjI0IDAgb2JqDTw8L0xpbmVhcml6ZWQgMS9MIDM1MTcyL08gMjYvRSAzMDI1Ni9OIDEvVCA .....
【问题讨论】:
我在这里没有看到 INSERT,只是一个 UPDATE。 还不清楚您是要保存文件的路径,还是保存为 BLOB。 查看编辑:栏的类型是什么?这需要是一个 BLOB。你可以在这里@Funk
我或@someone_else
。我们不能一直看这里的问题。
你是对的;请改用varbinary
/ varbinary(MAX)
。我的 SQL 服务器技能不像 mysql。
嗯...,我会尝试丢失base64_encode()
并使用准备好的语句,如this Q&A。和/或***.com/q/33630714/1415724 和***.com/questions/43071537/…
【参考方案1】:
下一个示例演示如何在 SQL Server 的 varbinary(max) 列中插入 PDF 文件,然后将该文件保存到磁盘:
T-SQL:
CREATE TABLE [dbo].[VarbinaryTable] (
[Data] varbinary(max) NULL
)
PHP:
<?php
# Connection
$server = 'server\instance,port';
$database = 'database';
$uid = 'user';
$pwd = 'password';
$cinfo = array(
"Database" => $database,
"UID" => $uid,
"PWD" => $pwd
);
$conn = sqlsrv_connect($server, $cinfo);
if ($conn === false)
echo "Error (sqlsrv_connect): ".print_r(sqlsrv_errors(), true);
exit;
# Insert PDF file
$pdf = file_get_contents('PDFFile.pdf');
$sql = "INSERT INTO VarbinaryTable ([Data]) VALUES (?)";
# In your case:
# $sql = "UPDATE VarbinaryTable SET [Data] = ? WHERE ID = 1";
$params = array(
array($pdf, SQLSRV_PARAM_IN, SQLSRV_PHPTYPE_STREAM(SQLSRV_ENC_BINARY), SQLSRV_SQLTYPE_VARBINARY('max'))
);
$stmt = sqlsrv_query($conn, $sql, $params);
if ($stmt === false)
echo "Error insert (sqlsrv_query): ".print_r(sqlsrv_errors(), true);
exit;
# Get PDF file and save it again on disk.
$sql = "SELECT [Data] FROM VarbinaryTable";
# In your case:
# $sql = "SELECT [Data] FROM VarbinaryTable WHERE ID = 1";
$stmt = sqlsrv_query($conn, $sql);
if ($stmt === false)
echo "Error (sqlsrv_query): ".print_r(sqlsrv_errors(), true);
exit;
if (sqlsrv_fetch($stmt))
$pdf = sqlsrv_get_field($stmt, 0, SQLSRV_PHPTYPE_STREAM(SQLSRV_ENC_BINARY));
file_put_contents('PDFFile-fromDB.pdf', $pdf);
# Output the file
header('Content-Description: File Transfer');
header("Content-type: application/pdf");
header("Content-disposition: attachment; filename=PDFFile-fromDB.pdf");
header('Content-Length: ' . filesize("PDFFile-fromDB.pdf"));
readfile("PDFFile-fromDB.pdf");
?>
【讨论】:
感谢您向我展示了一个示例。如果我要echo
$pdf = file_get_contents('PDFFile.pdf');
的结果,我会得到一些类似于以下内容的文本:%PDF-1.6 %���� 24 0 obj <> endobj 31 0...
但是当我转到数据库中归档的数据 Data
时,该归档显示以下值:@987654327 @ 并没有其他内容。如果我尝试打印$pdf = sqlsrv_get_field($stmt, 0, SQLSRV_PHPTYPE_STREAM(SQLSRV_ENC_BINARY));
$pdf 的值,输出以下结果:Resource id #12
。顺便说一句,我的意图是将检索到的数据保存在用户的 Windows 桌面上。
@DP。更新了答案。如果要强制下载,请使用readfile()
。以上是关于将文件插入 SQL 数据库并检索它的主要内容,如果未能解决你的问题,请参考以下文章
检索 ODBC 表并插入 SQL Server CE 数据库
Jetbrains Datagrip 2017.1.3,在将数据转储到 sql 插入文件时强制导出列