代码搜索:statement
找到约 10,000 项符合「statement」的源代码
代码结果 10,000
www.eeworm.com/read/185258/9046769
java databasemanager.java
import java.sql.*;
public class DataBaseManager
{
Connection con;
ResultSet rs;
Statement stmt;
String url="jdbc:odbc:sample";
public DataBaseManager()
{
try{
Clas
www.eeworm.com/read/379647/9190678
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/181950/9224650
h sqlrecordset.h
// SQLRecordset.h
//
// Encapsulates the basic ODBC API select statement eliminating
// the need to remember to free handles and other generic arguments.
//
// Revision Log
//
// Date Pr
www.eeworm.com/read/175135/9558616
cpp switch.cpp
// switch.cpp -- use the switch statement
#include
using namespace std;
void showmenu(); // function prototypes
void report();
void comfort();
int main()
{
showmenu();
in
www.eeworm.com/read/164962/10080389
txt random_generator.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/358682/10182195
cpp switch.cpp
// switch.cpp -- use the switch statement
#include
using namespace std;
void showmenu(); // function prototypes
void report();
void comfort();
int main()
{
showmenu();
in
www.eeworm.com/read/162511/10300504
c select.c
/* Implement the SELECT statement for character variables.
Contributed by Andy Vaught
This file is part of the GNU Fortran 95 runtime library (libgfortran).
Libgfortran is free software; you can
www.eeworm.com/read/161772/10375976
c cont.c
/* Demonstrates the continue statement. */
#include
int main( void )
{
/* Declare a buffer for input and a counter variable. */
char buffer[81];
int ctr;
/* In