導航:首頁 > 數據處理 > 表單怎麼保存資料庫

表單怎麼保存資料庫

發布時間:2023-09-02 21:33:02

Ⅰ 如何把excel表格數據導入到資料庫

1、打開SQL Server 2014 Management Studio 資料庫,並且登錄進去;

Ⅱ 表單的內容如何存入資料庫中

EXECL表中的數據導入資料庫並不難!
1、要懂得資料庫知識,並建有相關的可用於存儲該數據的表。
2、可以編程,直接讀取EXECL表單中數據,使用SQL寫入資料庫。
3、可以將EXECL另存為文本格式,然後使用BCP或者使用資料庫相關工具或軟體,將文件內容導入資料庫。

Ⅲ excel 表格存儲到資料庫

這里以SQL SERVE2008為例。SQLSERVER2008有一個「數據導入導出功能」,當然我們也可以打開資料庫之後,在資料庫上點擊右鍵,然後選擇「任務」,選擇「導入數據」,我們就看到彈出淡入數據的對話框:

Ⅳ 如何將JSP頁面中的表單信息保存到Mysql資料庫

獲取表單中的信息,然後插入到Mysql中
<%@pagelanguage="java"contentType="text/html;charset=gbk"
鏈桐亮pageEncoding="gbk"%>
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<%
intid=Integer.parseInt(request.getParameter("id"));
introotid=Integer.parseInt(request.getParameter("rootid"));

%>

<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gbk">
<title>Replay</title>
</head>
<body>
<formmethod="post"action="ReplayOK.jsp">
<inputtype="hidden"name="id"value="<%=id%>">
<inputtype="hidden"name="rootid"value="<%=rootid%>">
<tablealign="center">
<tr>
<td>
<inputtype="text"name="title"size="80">
</td>
</tr>

<tr>
<td>
<textareacols="80"rows="20"name="cont"></textarea>
</td>
</tr>

<tr>
<td>
<inputtype="submit"value="提交">
</td>
</tr>
</table>
</form>
</body>
</html>

---------------------------------------------------------------
下面接收上面表單中傳過來的信息,並插入到mysql中

<%@棚寬pagelanguage="java"contentType="text/html;charset=gbk"
pageEncoding="gbk"%>
<%@pageimport="輪前java.sql.*"%>
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<%
request.setCharacterEncoding("GBK");
intid=Integer.parseInt(request.getParameter("id"));
introotid=Integer.parseInt(request.getParameter("rootid"));
Stringtitle=request.getParameter("title");
Stringcont=request.getParameter("cont").replaceAll(" ","<br/>");

Connectionconn=null;
Statementst=null;

Class.forName("com.mysql.jdbc.Driver");
conn=DriverManager.getConnection("jdbc:mysql://localhost/bbs?user=root&password=690115399");
st=conn.createStatement();

conn.setAutoCommit(false);

Stringsql="insertintoarticlevalues(null,?,?,?,?,now(),0)";
PreparedStatementpstmt=conn.prepareStatement(sql);
pstmt.setInt(1,id);
pstmt.setInt(2,rootid);
pstmt.setString(3,title);
pstmt.setString(4,cont);
pstmt.executeUpdate();

st.executeUpdate("updatearticlesetisleaf=1whereid="+id);

conn.commit();
conn.setAutoCommit(true);

st.close();
pstmt.close();
conn.close();
%>

<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gbk">
<title>Inserttitlehere</title>
</head>
<body>
<%response.sendRedirect("ShowArticleTree.jsp");%>
</body>
</html>
當然最好的方法還是應該用jsp+JavaBean方式。

閱讀全文

與表單怎麼保存資料庫相關的資料

熱點內容
產品副總監用英語怎麼說 瀏覽:768
像素生存世界交易怎麼解封 瀏覽:274
什麼認證數據線好 瀏覽:31
ug程序順序為什麼不能拖動 瀏覽:968
蘋果手機技術顧問是做什麼工作 瀏覽:697
哪裡能實時關注水果信息 瀏覽:84
代理代賬行業應該怎麼選 瀏覽:631
麻辣燙技術一般要多少錢 瀏覽:276
大數據與財務管理主要用什麼軟體 瀏覽:780
滴答技術怎麼樣 瀏覽:923
小學需要會哪個程序語言 瀏覽:563
小程序後台如何獲取電子發票 瀏覽:462
設計和程序哪個更累 瀏覽:27
小程序使用量多少 瀏覽:551
台企技術是什麼意思 瀏覽:133
支付寶數據清洗是什麼 瀏覽:904
信息科技大學在哪裡 瀏覽:633
房屋交易有哪些證件 瀏覽:914
上海國際登記代理怎麼樣 瀏覽:969
仲裁程序怎麼撤銷 瀏覽:772