通过JDBC访问数据库
MySql数据库
MySQL是一种开放源代码的关系型数据库管理系统(RDBMS),使用最常用的数据库管理语言-结构化查询语言(SQL)进行数据库管理。
使用JSP文件访问MySql数据库
默认用户名:root
端口号:3306
【代码】
<% Class.forName(“com.mysql.jdbc.Driver”);
Connection con=DriverManager.
getConnection(“jdbc:mysql://localhost:3306/student”,”root”,”123456″);
Statement stmt = con.createStatement();
%>
// student 为数据库名称,123456为用户密码
SQL Server数据库
SQL Server数据库的应用,能够有效提升数据请求与返回的速度,有效应对复杂任务的处理,是提升工作效率的关键。
使用JSP文件访问SQL Server数据库
默认用户名:sa
端口号:1433
【代码】
<%
Class.forName(com.microsoft.jdbc.sqlserver.SQLServerDriver);
String url=”jdbc:microsoft:sqlserver://
localhost:1433;
DatabaseName=pubs”;
String user=”sa”;
String password=”123456″;
Connection conn = DriverManager.
getConnection(url,user,password);
Statement stmt = conn.createStatement()
%>
Oracle数据库
Oracle Database是甲骨文公司的一款关系数据库管理系统,系统可移植性好、使用方便、功能强,适用于各类大、中、小、微机环境。它是一种高效率、可靠性好的、适应高吞吐量的数据库方案。
使用JSP文件访问Oracle数据库
用户名:user
端口号:1521
【代码】
<%
Class.forName(“oracle.jdbc.driver.OracleDriver”);
Connection con = DriverManager.getConnection(“jdbc:oracle:thin:@localhost:1521:orcl”,”user”,”password”);
Statement stmt = con.createStatement();
%>
// orcl是数据库名称
Database
MySQL is an open source relational database management system (RDBMS) that uses the most commonly used database management language-Structured Query Language (SQL) for database management.
The application of SQL Server database can effectively improve the speed of data request and return, and effectively deal with the processing of complex tasks, which is the key to improving work efficiency.
Oracle Database is a relational database management system of Oracle Corporation. The system has good portability, convenient use, and strong functions. It is suitable for all kinds of large, medium, small and microcomputer environments. It is a highly efficient, reliable, and high-throughput database solution.
END
参考资料:Google翻译,百度百科
本文由LearningYard学苑原创,部分文字、图片来源于网络,如有侵权,请联系删除!
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/5342.html