代码搜索:SqL
找到约 10,000 项符合「SqL」的源代码
代码结果 10,000
www.eeworm.com/read/183260/9173857
sql addnewstudent.sql
REM AddNewStudent.sql
REM Chapter 9, Oracle9i PL/SQL Programming by Scott Urman
REM This script demonstrates a stored procedure and how to call it.
CREATE OR REPLACE PROCEDURE AddNewStudent (
www.eeworm.com/read/183260/9173859
sql classpackage.sql
REM ClassPackage.sql
REM Chapter 9, Oracle9i PL/SQL Programming by Scott Urman
REM This is an example of a package.
CREATE OR REPLACE PACKAGE ClassPackage AS
-- Add a new student into the spec
www.eeworm.com/read/183260/9173861
sql raiseerror.sql
REM RaiseError.sql
REM Chapter 9, Oracle9i PL/SQL Programming by Scott Urman
REM This procedure illustrates the behavior of unhandled exceptions
REM and OUT variables.
/* Illustrates the behavio
www.eeworm.com/read/183260/9173865
sql overload.sql
REM overload.sql
REM Chapter 9, Oracle9i PL/SQL Programming by Scott Urman
REM This package contains overloaded subprograms.
CREATE OR REPLACE PACKAGE ClassPackage AS
-- Add a new student into
www.eeworm.com/read/183260/9173867
sql random.sql
REM Random.sql
REM Chapter 9, Oracle9i PL/SQL Programming by Scott Urman
REM This package contains an initialization section.
CREATE OR REPLACE PACKAGE Random AS
-- Random number generator. U
www.eeworm.com/read/183260/9173869
sql callfunction.sql
REM callFunction.sql
REM Chapter 9, Oracle9i PL/SQL Programming by Scott Urman
REM This script shows how to call a stored function.
set serveroutput on
DECLARE
CURSOR c_Classes IS
SELE
www.eeworm.com/read/183260/9173871
sql packageerror.sql
REM packageError.sql
REM Chapter 9, Oracle9i PL/SQL Programming by Scott Urman
REM This package will not compile because the body does not
REM match the specification.
CREATE OR REPLACE PACKAGE
www.eeworm.com/read/183260/9173873
sql callme.sql
REM CallMe.sql
REM Chapter 9, Oracle9i PL/SQL Programming by Scott Urman
REM This script demonstrates positional and named notation for
REM procedure calls.
CREATE OR REPLACE PROCEDURE CallMe(
www.eeworm.com/read/183260/9173874
sql default.sql
REM default.sql
REM Chapter 9, Oracle9i PL/SQL Programming by Scott Urman
REM This version of AddNewStudent takes a default parameter.
CREATE OR REPLACE PROCEDURE AddNewStudent (
p_FirstName
www.eeworm.com/read/183260/9173876
sql noparams.sql
REM noparams.sql
REM Chapter 9, Oracle9i PL/SQL Programming by Scott Urman
REM This script shows stored subprograms with no parameters.
set serveroutput on
CREATE OR REPLACE PROCEDURE NoParams