表结构
id流水id号,自增长
user_id 用户的id
img_add 的路径
type 的类别,用于分类管理
status 状态,公开度
做一个表,不要怕冗余字段多,是可以精简的,一定要考虑全面
你说的存到一个字段中,应该是有多少张,就会有多少条记录,的地址是放在对应记录下面的,每张都会有一个流水id,用于和其他的进行区别。
至于实现的原理,就是在你提交的时候(多张或一张)提取的路径,存到img_add中。
在你展示的时候,只要去库里查路径,就可以把它放在<img src="">中了。
1、新建一个数据库,数据库名为Image,表名为image。并为表添加ID,tupian两个列。
2、新建一个项目(Photo),在工具箱中往窗体中拖入一个PictureBox控件,两个Button按钮,一个OpenFileDialog控件。并修改pictureBox1控件的属性BorderStyle为FixedSingle,SizeMode为StretchImage;修改两个button控件属性的Text值依次为”打开一张”“插入数据库”。
3、首先打开“数据“选择“添加新数据源”,然后(数据库)下一步,(数据集)下一步,选择”新建连接“,依次选择服务器名,服务器验证方式,选择”选择或输入一个数据库名。
4、选择”选择或输入一个数据库名,添加刚刚新建的数据库,然后点击“测试连接”,看看数据库连接是否成功。成功后点“确定”回到“数据源配置向导”页面,将“连接字符串复制下来。
5、添加两条using命名空间 using SystemIO; using SystemDataSqlClient;作用为读取二进制数据流,用于数据库的连接。
6、编辑Button按钮“打开一张”的Click事件。
7、编写Button按钮“插入数据库:的Click事件。
解决方法一般有两种:
1、将保存的路径存储到数据库;
2、将以二进制数据流的形式直接写入数据库字段中。
以下为具体方法:
一、保存的上传路径到数据库:
string
uppath="";//用于保存上传路径
//获取上传的文件名
string fileFullname =
thisFileUpload1FileName;
//获取上传的时间,以时间作为的名字可以防止重名
string
dataName =
DateTimeNowToString("yyyyMMddhhmmss");
//获取的文件名(不含扩展名)
string
fileName = fileFullnameSubstring(fileFullnameLastIndexOf("\\") +
1);
//获取扩展名
string type =
fileFullnameSubstring(fileFullnameLastIndexOf("") +
1);
//判断是否为要求的格式
if (type == "bmp" || type == "jpg" || type == "jpeg"
|| type == "gif" || type == "JPG" || type == "JPEG" || type == "BMP" || type ==
"GIF")
{
//将上传到指定路径的文件夹
thisFileUpload1SaveAs(ServerMapPath("~/upload")
+ "\\" + dataName + "" +
type);
//将路径保存到变量,将该变量的值保存到数据库相应字段即可
uppath
= "~/upload/" + dataName + "" +
type;
}
二、将以二进制数据流直接保存到数据库:
引用如下命名空间:
using
SystemDrawing;
using SystemIO;
using
SystemDataSqlClient;
设计数据库时,表中相应的字段类型为iamge
保存:
//路径
string
strPath = thisFileUpload1PostedFileFileNameToString
();
//读取
FileStream fs = new SystemIOFileStream(strPath,
FileModeOpen, FileAccessRead);
BinaryReader br = new
BinaryReader(fs);
byte[] photo =
brReadBytes((int)fsLength);
brClose();
fsClose();
//存入
SqlConnection
myConn = new SqlConnection("Data Source=;Initial Catalog=stumanage;User
ID=sa;Password=123");
string strComm = " INSERT INTO
stuInfo(stuid,stuimage) VALUES(107,@photoBinary
)";// *** 作数据库语句根据需要修改
SqlCommand myComm = new SqlCommand(strComm,
myConn);
myCommParametersAdd("@photoBinary", SqlDbTypeBinary,
photoLength);
myCommParameters["@photoBinary"]Value =
photo;
myConnOpen();
if (myCommExecuteNonQuery() >
0)
{
thisLabel1Text =
"ok";
}
myConnClose();
读取:
连接数据库字符串省略
myconOpen();
SqlCommand
command = new
SqlCommand("select stuimage from stuInfo where stuid=107",
mycon);//查询语句根据需要修改
byte[] image = (byte[])commandExecuteScalar
();
//指定从数据库读取出来的的保存路径及名字
string strPath =
"~/Upload/zhangsanJPG";
string strPhotoPath =
ServerMapPath(strPath);
//按上面的路径与名字保存文件
BinaryWriter bw = new
BinaryWriter(FileOpen(strPhotoPath,FileModeOpenOrCreate));
bwWrite(image);
bwClose();
//显示
thisImage1ImageUrl
= strPath;
采用这两种方式可以根据实际需求灵活选择。
当然是用VARCHAR来作为存储路径的字段类型咯,大小应该设为
255
。
char是字符型的,要自己指定大小
text是用来存放文本的,大小由系统指定为16,但是文本实际上不是
存储在表中,而是存在系统分配的页中,这些用户不用管
百度上找到的资料
通常对用户上传的需要保存到数据库中。解决方法一般有两种:一种是将保存的路径存储到数据库;另一种是将以二进制数据流的形式直接写入数据库字段中。以下为具体方法:
一、保存的上传路径到数据库:
string uppath="";//用于保存上传路径
//获取上传的文件名
string fileFullname = thisFileUpload1FileName;
//获取上传的时间,以时间作为的名字可以防止重名
string dataName = DateTimeNowToString("yyyyMMddhhmmss");
//获取的文件名(不含扩展名)
string fileName = fileFullnameSubstring(fileFullnameLastIndexOf("\\") + 1);
//获取扩展名
string type = fileFullnameSubstring(fileFullnameLastIndexOf("") + 1);
//判断是否为要求的格式
if (type == "bmp" || type == "jpg" || type == "jpeg" || type == "gif" || type == "JPG" || type == "JPEG" || type == "BMP" || type == "GIF")
{
//将上传到指定路径的文件夹
thisFileUpload1SaveAs(ServerMapPath("~/upload") + "\\" + dataName + "" + type);
//将路径保存到变量,将该变量的值保存到数据库相应字段即可
uppath = "~/upload/" + dataName + "" + type;
}
二、将以二进制数据流直接保存到数据库:
引用如下命名空间:
using SystemDrawing;
using SystemIO;
using SystemDataSqlClient;
设计数据库时,表中相应的字段类型为iamge
保存:
//路径
string strPath = thisFileUpload1PostedFileFileNameToString ();
//读取
FileStream fs = new SystemIOFileStream(strPath, FileModeOpen, FileAccessRead);
BinaryReader br = new BinaryReader(fs);
byte[] photo = brReadBytes((int)fsLength);
brClose();
fsClose();
//存入
SqlConnection myConn = new SqlConnection("Data Source=;Initial Catalog=stumanage;User ID=sa;Password=123");
string strComm = " INSERT INTO stuInfo(stuid,stuimage) VALUES(107,@photoBinary )";// *** 作数据库语句根据需要修改
SqlCommand myComm = new SqlCommand(strComm, myConn);
myCommParametersAdd("@photoBinary", SqlDbTypeBinary, photoLength);
myCommParameters["@photoBinary"]Value = photo;
myConnOpen();
if (myCommExecuteNonQuery() > 0)
{
thisLabel1Text = "ok";
}
myConnClose();
读取:
连接数据库字符串省略
myconOpen();
SqlCommand command = new
SqlCommand("select stuimage from stuInfo where stuid=107", mycon);//查询语句根据需要修改
byte[] image = (byte[])commandExecuteScalar ();
//指定从数据库读取出来的的保存路径及名字
string strPath = "~/Upload/zhangsanJPG";
string strPhotoPath = ServerMapPath(strPath);
//按上面的路径与名字保存文件
BinaryWriter bw = new BinaryWriter(FileOpen(strPhotoPath,FileModeOpenOrCreate));
bwWrite(image);
bwClose();
//显示
thisImage1ImageUrl = strPath;
采用俩种方式可以根据实际需求灵活选择。
以上就是关于多图片存入数据库一个字段中全部的内容,包括:多图片存入数据库一个字段中、图片如何存入数据库、如何将图片储存在MySQL数据库里等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)