代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/247603/4480565
java sql_in.java
package com.hao2007.struts.bean;
public class Sql_in {
public static boolean sql_in_method(String str) {
String sql_in_str = "'~and~exec~insert~select~delete~update~count~*~%~chr~mid~master~
www.eeworm.com/read/247438/4482620
sql uninstallsqlstate.sql
USE master
GO
/* Drop the database containing our sprocs */
IF DB_ID('ASPState') IS NOT NULL BEGIN
DROP DATABASE ASPState
END
GO
/* Drop temporary tables */
IF EXISTS (SELECT * FROM te
www.eeworm.com/read/247438/4482621
sql installsqlstate.sql
/* First uninstall - this section is exactly the same as uninstall.sql */
USE master
GO
/* Drop the database containing our sprocs */
IF DB_ID('ASPState') IS NOT NULL BEGIN
DROP DATABASE AS
www.eeworm.com/read/247438/4482642
sql create.sql
/*This file contains scripts for database objects to accompany the book
ASP .NET Professional Projects
By Hersh Bhasin
To install
~~~~~~~~~~
Step1 : Create a MS SQL Server database with the nam
www.eeworm.com/read/247207/4485861
sql passwd.sql
CREATE TABLE `passwd` (
`user` varchar(32) NOT NULL default '',
`password` varchar(35) NOT NULL default '',
`enabled` tinyint(1) NOT NULL default '1',
`fullname` varchar(60) default NULL,
`c
www.eeworm.com/read/246740/4492103
sql gbook.sql
CREATE DATABASE `gbook`
CHARACTER SET 'latin1'
COLLATE 'latin1_swedish_ci';
USE `gbook`;
CREATE TABLE `t_gbook` (
`i_id` int(11) NOT NULL auto_increment,
`c_name` varchar(15) N
www.eeworm.com/read/246735/4492210
txt sql.txt
drop table user_def
create table user_def
(
id int identity,
photo_name varchar(50),
photo image
)
select *from user_def
drop table img_no_def
create table img_no_def
(
last_no i
www.eeworm.com/read/246735/4492217
txt sql.txt
drop table cp_def
create table cp_def
(
photo image,
photo_name varchar(20)
)
select * from cp_def
www.eeworm.com/read/246079/4497257
sql createprocedures.sql
USE Northwind
SET nocount on
GO
IF db_name() 'Northwind'
RAISERROR('Database Northwind not found', 22, 1) WITH LOG
GO
IF object_id('procModifyProductInfo') is not null
DROP PROCEDU