代码搜索:Sql
找到约 10,000 项符合「Sql」的源代码
代码结果 10,000
www.eeworm.com/read/431844/8649725
sql hysys.sql
www.eeworm.com/read/431833/8651042
sql dbpatch.sql
/*
OneFileModule module : ExcelReader by Thierry (Tiptopweb)
This patch introduces the following changes to the db:
- Inserts entry in table rb_GeneralModuleDefinitions
- Inserts entry in table rb_Mo
www.eeworm.com/read/431827/8651674
sql uninstall.sql
/* Uninstall script, FAQs module, Jakob Hansen, 25 april 2003 */
/* No we do not delete the table!
if exists (select * from dbo.sysobjects where id = object_id(N'[rb_FAQs]') and OBJECTPROPERTY(id,
www.eeworm.com/read/431827/8651685
sql install.sql
/* Install script, FAQs module, Jakob Hansen, 25 april 2003 */
if Not exists (select * from dbo.sysobjects where id = object_id(N'[rb_FAQs]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
BEGIN
www.eeworm.com/read/431804/8654049
sql dbpatch.sql
www.eeworm.com/read/288025/8654979
sql student.sql
www.eeworm.com/read/387726/8657733
pdf sql.pdf
www.eeworm.com/read/287932/8660286
cs sql.cs
using System;
using System.Collections.Generic;
using System.Text;
using FirebirdSql.Data.FirebirdClient;
using FirebirdSql.Data.Isql;
using System.IO;
using System.Reflection;
using GPCore.Pro
www.eeworm.com/read/287932/8660289
sql createdatabase.sql
Create Table Gibs(
GibID int,
Alias char(255) not null,
GroupID int not null,
DefaultAccount int default 0,
Status char(255)
);
Create Table Groups(
GroupID int,
ParentGroup int
www.eeworm.com/read/431615/8665135
sql installdb.sql
USE master
GO
EXEC sp_addlogin 'BlueHillASPUser', 'Password01', 'BlueHill'
EXEC sp_addlogin 'BlueHillWinUser', 'Password01', 'BlueHill'
GO
IF DB_ID('BlueHill') IS NOT NULL BEGIN
DROP D