代码搜索:SO库
找到约 10,000 项符合「SO库」的源代码
代码结果 10,000
www.eeworm.com/read/355801/10243692
chm vc知识库五.chm
www.eeworm.com/read/355801/10243694
chm vc知识库七.chm
www.eeworm.com/read/355783/10244104
doc 数据库变更管理.doc
www.eeworm.com/read/162814/10269287
db 航班数据库.db
www.eeworm.com/read/355333/10275923
chm vb代码库帮助文档.chm
www.eeworm.com/read/162107/10335506
doc 数据库设计报告.doc
www.eeworm.com/read/280199/10348213
txt 更新数据库信息.txt
private void Connect()
{
SqlConnection conn=null;
try
{
conn=new SqlConnection("server=.;uid=sa;pwd=;database=wudi");
www.eeworm.com/read/280199/10348219
txt 连接access数据库.txt
private void OpenDatabase()
{
cn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath("db1.mdb");
cn.Open();
}
www.eeworm.com/read/425439/10356284
txt 31出库主表.txt
if exists (select * from sysobjects where id = object_id('van_outdepot'))
drop table van_outdepot;
CREATE TABLE van_outdepot
(
outid varchar(20) not null, /*采购单号*/
server
www.eeworm.com/read/161490/10403963
txt 数据库生成脚本.txt
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[ca_emp]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[ca_emp]
GO
if exists (select * from dbo.sysobjects wh