代码搜索:CreateTable
找到约 333 项符合「CreateTable」的源代码
代码结果 333
www.eeworm.com/read/416426/11028330
cpp createtable.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
USERES("CreateTable.res");
USEFORM("Main.cpp", Form1);
//---------------------------
www.eeworm.com/read/416426/11028336
bpr createtable.bpr
# ---------------------------------------------------------------------------
!if !$d(BCB)
BCB = $(MAKEDIR)\..
!endif
# --------------------------------------------------------------------------
www.eeworm.com/read/416426/11028649
res createtable.res
www.eeworm.com/read/416426/11028653
cpp createtable.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
USERES("CreateTable.res");
USEFORM("Main.cpp", Form1);
//---------------------------
www.eeworm.com/read/416426/11029099
dpr createtable.dpr
program CreateTable;
uses
Forms,
Main in 'Main.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
www.eeworm.com/read/416426/11029101
res createtable.res
www.eeworm.com/read/466091/7044436
sql createtable.sql
use
SMIS
go
create table student(
学籍号 nvarchar(10) not null primary key,
姓名 nvarchar(8) not null,
性别 nvarchar(2) default '男' check(性别 in('男','女')),
出生年月 nvarchar(7) null
)
go
create
www.eeworm.com/read/464218/7167528
pas createtable.pas
unit createtable;
// -------------------------------------
// HeidiSQL
// Create table
// -------------------------------------
interface
uses
Windows, Messages, SysUtils, Classes,