`
z610
  • 浏览: 39263 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Basic JDBC example

    博客分类:
  • java
 
阅读更多

String connectionURL = "jdbc:mysql://localhost:3306/test";
		// Change the connection string according to your db, ip, username and password

		Connection con = null;
		try {

			// Load the Driver class.
			Class.forName("com.mysql.jdbc.Driver");
			// If you are using any other database then load the right driver here.

			// Create the connection using the static getConnection method
			con = DriverManager.getConnection(connectionURL, "aaa", "aaaa");

			// Create a Statement class to execute the SQL statement
			Statement stmt = con.createStatement();

			Random random = new Random();
			int status = random.nextInt(2);
			System.out.println(status);
			
			String sql = "update test set status = " + status + " where id = 1";

			stmt.executeUpdate(sql);

		} catch (SQLException e) {
			e.printStackTrace();
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			if(con != null) {
				try {
					con.close();
				} catch (SQLException e) {
					e.printStackTrace();
				}
			}
		}
 
分享到:
评论

相关推荐

    Spring 各种例子:Spring Data Elasticsearch,JDBC,JPA,LDAP,MongoDB

    - basic:展示了Spring Data JDBC的基本用法。 - immutables:展示了使用Immutables的Spring Data JDBC用法。 4. Spring Data JPA: - eclipselink:展示了如何在Spring Boot和Eclipselink中使用Spring Data JPA...

    basic-mvc-example-Netbeans:使用 Netbeans 的 MVC 基本示例

    "basic-mvc-example-Netbeans:使用 Netbeans 的 MVC 基本示例" 这个标题表明这是一个关于使用 NetBeans IDE 实现 MVC(模型-视图-控制器)设计模式的初级示例项目。MVC 是一种广泛应用于软件工程,特别是Web应用开发...

    java_ibatis_example.rar_ibatis_java

    iBatis,全称是“Internet Basic Architecture”,由Clinton Begin创建,最初是一个开源的SQL映射框架,后来发展为MyBatis,现在由MyBatis团队维护。iBatis的核心思想是将SQL语句与Java代码解耦,通过XML配置文件...

    APress - The Definitive Guide to MySQL, 2nd Ed - 2004 - (By Laxxuss).chm

    Chapter 17 - Visual Basic, C#, ODBC Part IV - Reference Chapter 18 - SQL Reference Chapter 19 - MySQL Tools Chapter 20 - API Reference Part V - Appendices Appendix A - Glossary Appendix...

    windows oracle 客户端,精简版本

    对于开发人员,Oracle Basic Client可通过OCI或JDBC驱动提供API,以便在C/C++或Java应用程序中连接和操作Oracle数据库。 6. **性能优化** Instant Client的精简设计减少了内存占用和启动时间,提升了整体性能。...

    Expert Oracle Database Architecture 2nd 原版PDF by Kyte

    are a Visual Basic programmer using ODBC, a Java programmer using EJBs and JDBC, or a Perl programmer using DBI Perl. This book does not promote any specific application architecture; it does not ...

    Oracle 11g RAC 基本概念

    (METHOD=BASIC) (RETRIES=180) (DELAY=5) ) ) ) ``` ##### 2. FCF (快速连接故障转移) FCF 是 Oracle 11g 中引入的另一种故障转移机制,特别适用于使用 JDBC Thin 或 JDBC OCI 驱动的应用程序。FCF 与隐式连接缓存...

    2021-2022计算机二级等级考试试题及答案No.18044.docx

    18. 域名中子域名用`.`分隔,例如`www.example.com`,`www`是子域名,`example`是顶级域名。 19. SQL中,修改表结构并添加有效性规则,正确的语句格式是`ALTER TABLE 教师 ALTER 职工号 SET CHECK LEFT(职工号,3)=...

    java中(注解符)处理Clob(blob)类型

    <value>com/example/MyEntity.hbm.xml</value> ``` 其中,dataSource bean 用于指定数据库连接的信息,而 hibernateSessionFactory bean 用于指定 Hibernate 的配置信息。 四、处理 Clob 和 Blob 类型的常见...

    oracle_11g_R2_RAC原理解读.docx

    (METHOD=BASIC) (RETRIES=180) (DELAY=5) ) ) ) ``` 2. **快速连接故障转移 (FCF)** - FCF 支持 JDBC Thin 和 JDBC OCI 驱动程序,与连接缓存结合使用以提供更高的连接性能和可用性。 - 应用程序必须配置 ...

    Hibernate Reference Documentation3.1

    3.3. JDBC connections 3.4. Optional configuration properties 3.4.1. SQL Dialects 3.4.2. Outer Join Fetching 3.4.3. Binary Streams 3.4.4. Second-level and query cache 3.4.5. Query Language Substitution...

    mybatis-generator自动生成mapper.xml,含有压缩包即拿即用

    4. **modelType**:MBG提供了三种模型类型:BasicModel(基础模型,只包含字段和getter/setter)、ComplexModel(复杂模型,包含equals、hashCode和toString方法)和ExampleModel(用于查询示例,生成用于动态SQL的...

    hibernate_reference.pdf

    - **JDBC Connections**: Explains how to configure JDBC connections, including connection pooling and properties. - **Optional Configuration Properties**: Describes optional properties that can be set ...

    web.xml详细说明

    <auth-method>BASIC <realm-name>Secure App ``` 18. **`<security-role>`** - **作用**:定义安全角色。 - **示例**: ```xml <role-name>admin ``` 19. **`<env-entry>`** - **作用**:声明Web...

    XML配置详解

    <auth-method>BASIC <realm-name>My Realm ``` ##### 13. `<security-role>` 和 `<env-entry>` - **`<security-role>`**:定义了安全角色列表,这些角色将在servlet元素内的`<security-role-ref>`元素的`role-...

    Geotools Java API 开发gis的参考资料

    org.geotools.data.jdbc.attributeio org.geotools.data.jdbc.datasource org.geotools.data.jdbc.fidmapper org.geotools.data.jdbc.referencing org.geotools.data.memory org.geotools.data.mif org.geo...

    pro spring batch

    The author also walks you through, from end to end, the design and implementation of a batch process based upon a theoretical real-world example. This includes basic project setup, implementation, ...

    restful restful所需要的jar包

    * Client JDBC connector based on the JDBC API, a custom request XML format and the JDBC WebRowSet interface for XML responses. * Client FILE connector supports GET, PUT and DELETE methods on files ...

Global site tag (gtag.js) - Google Analytics