代码搜索:CreateTable
找到约 333 项符合「CreateTable」的源代码
代码结果 333
www.eeworm.com/read/372580/9502653
h createtable.h
#if !defined(AFX_CREATETABLE_H__8B87A0D7_2F93_47F7_A8FB_80FB2A5F4C30__INCLUDED_)
#define AFX_CREATETABLE_H__8B87A0D7_2F93_47F7_A8FB_80FB2A5F4C30__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endi
www.eeworm.com/read/372580/9502658
cpp createtable.cpp
// CreateTable.cpp : implementation file
//
#include "stdafx.h"
#include "ADO.h"
#include "CreateTable.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __F
www.eeworm.com/read/169056/9884175
java createtable.java
import java.text.*; // needed for formatting
public class CreateTable
{
public static void main(String[] args)
{
int num;
DecimalFormat df = new DecimalFormat("0000");
Syste
www.eeworm.com/read/359486/10143281
cs createtable.cs
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
using DBMaintainDll.Data_S
www.eeworm.com/read/280330/10338559
sql createtable.sql
use SysLog_info
if exists (select * from dbo.sysobjects where id = object_id(N'[SysLog]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [SysLog]
GO
CREATE TABLE [SysLog] (
[AccTime]
www.eeworm.com/read/160586/10516399
sql createtable.sql
Use MyDB
Create Table Login
(Name varchar(10) not null Primary key,
Password varchar(10) not null
)
go
Create Index idxLogin on Login(Name)
Insert Into Login Values('manager','1234567')
GO
www.eeworm.com/read/275695/10800720
txt createtable.txt
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[BASE_DATA]') and
OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [dbo].[BASE_DATA];
CREATE TABLE [dbo].[BASE_DATA] (
[WO
www.eeworm.com/read/416426/11027166