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();
}
}
}
分享到:
相关推荐
- 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 基本示例" 这个标题表明这是一个关于使用 NetBeans IDE 实现 MVC(模型-视图-控制器)设计模式的初级示例项目。MVC 是一种广泛应用于软件工程,特别是Web应用开发...
iBatis,全称是“Internet Basic Architecture”,由Clinton Begin创建,最初是一个开源的SQL映射框架,后来发展为MyBatis,现在由MyBatis团队维护。iBatis的核心思想是将SQL语句与Java代码解耦,通过XML配置文件...
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...
对于开发人员,Oracle Basic Client可通过OCI或JDBC驱动提供API,以便在C/C++或Java应用程序中连接和操作Oracle数据库。 6. **性能优化** Instant Client的精简设计减少了内存占用和启动时间,提升了整体性能。...
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 ...
(METHOD=BASIC) (RETRIES=180) (DELAY=5) ) ) ) ``` ##### 2. FCF (快速连接故障转移) FCF 是 Oracle 11g 中引入的另一种故障转移机制,特别适用于使用 JDBC Thin 或 JDBC OCI 驱动的应用程序。FCF 与隐式连接缓存...
18. 域名中子域名用`.`分隔,例如`www.example.com`,`www`是子域名,`example`是顶级域名。 19. SQL中,修改表结构并添加有效性规则,正确的语句格式是`ALTER TABLE 教师 ALTER 职工号 SET CHECK LEFT(职工号,3)=...
<value>com/example/MyEntity.hbm.xml</value> ``` 其中,dataSource bean 用于指定数据库连接的信息,而 hibernateSessionFactory bean 用于指定 Hibernate 的配置信息。 四、处理 Clob 和 Blob 类型的常见...
(METHOD=BASIC) (RETRIES=180) (DELAY=5) ) ) ) ``` 2. **快速连接故障转移 (FCF)** - FCF 支持 JDBC Thin 和 JDBC OCI 驱动程序,与连接缓存结合使用以提供更高的连接性能和可用性。 - 应用程序必须配置 ...
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...
4. **modelType**:MBG提供了三种模型类型:BasicModel(基础模型,只包含字段和getter/setter)、ComplexModel(复杂模型,包含equals、hashCode和toString方法)和ExampleModel(用于查询示例,生成用于动态SQL的...
- **JDBC Connections**: Explains how to configure JDBC connections, including connection pooling and properties. - **Optional Configuration Properties**: Describes optional properties that can be set ...
<auth-method>BASIC <realm-name>Secure App ``` 18. **`<security-role>`** - **作用**:定义安全角色。 - **示例**: ```xml <role-name>admin ``` 19. **`<env-entry>`** - **作用**:声明Web...
<auth-method>BASIC <realm-name>My Realm ``` ##### 13. `<security-role>` 和 `<env-entry>` - **`<security-role>`**:定义了安全角色列表,这些角色将在servlet元素内的`<security-role-ref>`元素的`role-...
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...
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, ...
* 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 ...