代码搜索:Sql
找到约 10,000 项符合「Sql」的源代码
代码结果 10,000
www.eeworm.com/read/159905/5577937
sql userlist.sql
CREATE TABLE UserList
(
u_id INT NOT NULL IDENTITY,
u_username VARCHAR( 100 ),
u_password VARCHAR( 100 )
)
www.eeworm.com/read/159905/5577939
sql dbregister.sql
vti_encoding:SR|utf8-nl
vti_timelastmodified:TR|29 Aug 2001 05:39:10 -0000
vti_extenderversion:SR|5.0.2.4330
vti_lineageid:SR|{77480ADC-F8FA-4F3D-BCE6-D89EA25C0F6B}
vti_cacheddtm:TX|29 Aug 2001 05
www.eeworm.com/read/159905/5577941
sql userlist.sql
vti_encoding:SR|utf8-nl
vti_timelastmodified:TR|29 Aug 2001 05:36:02 -0000
vti_extenderversion:SR|5.0.2.4330
vti_lineageid:SR|{51FEE5B4-DF3D-4949-A672-7890BD884298}
vti_cacheddtm:TX|29 Aug 2001 05
www.eeworm.com/read/159905/5577943
sql dbauthenticate.sql
vti_encoding:SR|utf8-nl
vti_timelastmodified:TR|29 Aug 2001 05:38:02 -0000
vti_extenderversion:SR|5.0.2.4330
vti_lineageid:SR|{72CA450E-789A-4720-B6A3-BE9A19253579}
vti_cacheddtm:TX|29 Aug 2001 05
www.eeworm.com/read/159905/5577950
sql dbauthenticate.sql
CREATE PROCEDURE DBAuthenticate
(
@username Varchar( 100 ),
@password Varchar( 100 )
)
As
DECLARE @ID INT
DECLARE @actualPassword Varchar( 100 )
SELECT
@ID = IdentityCol,
@actu
www.eeworm.com/read/159905/5578019
sql dbregister.sql
CREATE PROCEDURE DBRegister
(
@username Varchar( 100 ),
@password Varchar( 100 )
)
AS
IF EXISTS( SELECT u_id
FROM UserList
WHERE u_username=@username )
RETURN - 1
ELSE
INSERT
www.eeworm.com/read/159905/5578021
sql userlist.sql
CREATE TABLE UserList
(
u_id INT NOT NULL IDENTITY,
u_username VARCHAR( 100 ),
u_password VARCHAR( 100 )
)
www.eeworm.com/read/159905/5578025
sql dbauthenticate.sql
CREATE PROCEDURE DBAuthenticate
(
@username Varchar( 100 ),
@password Varchar( 100 )
)
As
DECLARE @ID INT
DECLARE @actualPassword Varchar( 100 )
SELECT
@ID = IdentityCol,
@actu
www.eeworm.com/read/159905/5578071
sql createsqlobjects.sql
/*
This script creates all the necessary tables and stored
procedures to use the ASP.NET Unleashed Sample Store.
Notice that it uses the Categories and Products tables
from the Northwind database.
www.eeworm.com/read/159905/5578092
sql createsqlobjects.sql
/*
This script creates all the necessary tables and stored
procedures to use the ASP.NET Unleashed Sample Store.
Notice that it uses the Categories and Products tables
from the Northwind database.