MySQL怎么保存文本 mysql保存sql文件

MySQL数据库中如何存入文本设置数据类型为VARCHAR,字段长度大一点,就可以存文本 ,数据量太多会影响MYSQL速度,不过MySQL怎么保存文本你也可以使用TEXT类型,存放大量数据
mysql里怎么存word文档,像可以存个链接,可以链接到word文档mysql表里面搞个longblob字段保存word
代码:
1)上传
try{
Class.forName("com.mysql.jdbc.Driver").newInstance();
Stringurl="jdbc:mysql://localhost/test?user=rootpassword=rootuseUnicode=truecharacterEncoding=gbk";
Connectionconn=DriverManager.getConnection(url);
Statementstmt=conn.createStatement();
stmt.execute("insertintotest(myid)values(5)");
stmt.close();
PreparedStatementpstmt=null;
Stringsql="";
Filefile=newFile("c:\\kick.jpg");
InputStreamphotoStream=newFileInputStream(file);
sql="UPDATEtestSETphoto=?WHEREmyid=5";
pstmt=conn.prepareStatement(sql);
pstmt.setBinaryStream(1,photoStream,(int)file.length());
pstmt.executeUpdate();
pstmt.close();
conn.close();
}catch(Exceptione){
e.printStackTrace();
}
2)下载:
PreparedStatement pst = ..... //省略获取Connection及查询的sql
ResultSet rs = pst.executeQuery();
InputStream is = rs.getBinaryStream(1); //1表示你的word字段在结果集中的索引号
FileOutputStream fos = new FileOutputStream("path");
byte [] buf = new byte[1024];
while(is.read(buf)!=-1){
fos.write(buf);
}
//close省略
大概思路,自己完善
mysql代码怎么保存1、复制mysql代码 。
2、进入空间MySQL怎么保存文本,找到自定义MySQL怎么保存文本,点击自定义 。
【MySQL怎么保存文本 mysql保存sql文件】3、将代码粘贴到地址栏里 。
4、按Enter键点击保存即可 。
MySQL怎么保存文本的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于mysql保存sql文件、MySQL怎么保存文本的信息别忘了在本站进行查找喔 。

    推荐阅读