代码搜索:statement
找到约 10,000 项符合「statement」的源代码
代码结果 10,000
www.eeworm.com/read/127767/14336854
txt e270. getting the cursor position in a scrollable result set.txt
try {
// Create a scrollable result set
Statement stmt = connection.createStatement(
ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
ResultSet r
www.eeworm.com/read/127767/14336898
txt e256. getting blob data from a database table.txt
A BLOB is a reference to data in a database. This example demonstrates how to retrieves bytes from a BLOB.
try {
Statement stmt = connection.createStatement();
ResultSet rs = s
www.eeworm.com/read/127767/14337561
txt e250. creating a sqlserver table to store java types.txt
This example creates a SQLServer table called sqlserver_all_table to store Java types.
try {
Statement stmt = connection.createStatement();
// Column Name SQ
www.eeworm.com/read/227189/14437594
txt 伪随机比特发生器.txt
-- Pseudo Random Bit Sequence Generator
-- This design entity uses a single conditional signal assignment statement to describe a PRBSG register.
-- The length of the register and the two tapping p
www.eeworm.com/read/222434/14690870
java dboperatorteacher.java
// DBOperatorTeacher.java
package caoyu;
import java.sql.*;
public class DBOperatorTeacher {
Connection conn = null;
PreparedStatement ps = null;
Statement stmt = null;
Result
www.eeworm.com/read/222434/14691014
java dboperatorcourse.java
// DBOperatorCourse.java
package caoyu;
import java.sql.*;
class DBOperatorCourse {
Connection conn = null;
PreparedStatement ps = null;
Statement stmt = null;
ResultSet rs
www.eeworm.com/read/207217/15279281
cpp ex3_01.cpp
// Exercise 3.1 The potential for trouble here comes in the statement that calculates the reciprocal.
// If you write it as 1/denominator, the program won't work - integer division will take place,
www.eeworm.com/read/477225/1363602
java conndb.java
package com.wsy.struts.datasource;
import java.sql.*;
public class ConnDB{
Connection conn=null;
Statement stmt=null;
ResultSet rs=null;
www.eeworm.com/read/472524/1409356
java batchupdate.java
import java.sql.*;
public class BatchUpdate {
public static void main(String args[]) {
String url = "jdbc:mySubprotocol:myDataSource";
Connection con;
Statement stmt;