代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/173141/5378024
java savepointconstantaction.java
/*
Derby - Class org.apache.derby.impl.sql.execute.SavepointConstantAction
Copyright 2003, 2004 The Apache Software Foundation or its licensors, as applicable.
Licensed under the Apache Li
www.eeworm.com/read/173141/5378026
java callstatementresultset.java
/*
Derby - Class org.apache.derby.impl.sql.execute.CallStatementResultSet
Copyright 1997, 2004 The Apache Software Foundation or its licensors, as applicable.
Licensed under the Apache Lic
www.eeworm.com/read/173141/5378028
java scalaraggregateresultset.java
/*
Derby - Class org.apache.derby.impl.sql.execute.ScalarAggregateResultSet
Copyright 1998, 2004 The Apache Software Foundation or its licensors, as applicable.
Licensed under the Apache L
www.eeworm.com/read/173141/5378889
sql nonreserved.sql
-- This tests that SQL92 formally reserved words are now unreserved
--
-- INTERVAL
create table interval(interval int);
prepare interval as 'select * from interval';
execute interval;
create index in
www.eeworm.com/read/167562/5458311
vms install.vms
How to build the freetype2 library on VMS
-----------------------------------------
It is actually very straightforward to install the Freetype2 library.
Just execute vms_make.com from the topleve
www.eeworm.com/read/165570/5481277
java recordpaymenttrans.java
package Transactions;
import Sets.StudentSet;
import Entities.*;
/** Record that a student has paid money towards their fees. */
public class RecordPaymentTrans
{
public void execute(int
www.eeworm.com/read/165570/5481279
java changegradetrans.java
package Transactions;
import Entities.*;
import Sets.StudentSet;
/** Change one student's grade for a course section */
public class ChangeGradeTrans
{
public void execute(int studentNum,
www.eeworm.com/read/164604/5488938
java lightoncommand.java
package headfirst.command.party;
public class LightOnCommand implements Command {
Light light;
public LightOnCommand(Light light) {
this.light = light;
}
public void execute() {
light.on();
www.eeworm.com/read/164604/5488962
java lightoffcommand.java
package headfirst.command.undo;
public class LightOffCommand implements Command {
Light light;
public LightOffCommand(Light light) {
this.light = light;
}
public void execute() {
light.of
www.eeworm.com/read/164604/5488967
java lightoncommand.java
package headfirst.command.undo;
public class LightOnCommand implements Command {
Light light;
public LightOnCommand(Light light) {
this.light = light;
}
public void execute() {
light.on()