u_data.~pas
来自「这是一个用delphi+oracle开发的学生管理系统」· ~PAS 代码 · 共 46 行
~PAS
46 行
unit U_data;
interface
uses
SysUtils, Classes, DBTables, DB, ADODB;
type
TDataM = class(TDataModule)
Conn: TADOConnection;
studentDS: TDataSource;
student: TADOTable;
class1: TADOTable;
class1ds: TDataSource;
DEPARTMENT: TADOTable;
DEPARTMENTds: TDataSource;
COUNTER: TADOTable;
COUNTERds: TDataSource;
CHANGE: TADOTable;
student_id: TADOTable;
student_idds: TDataSource;
student_id3: TADOTable;
student_id3ds: TDataSource;
class4: TADOTable;
class4ds: TDataSource;
department4: TADOTable;
department4ds: TDataSource;
change4: TADOTable;
CHANGE_CODE4: TADOTable;
CHANGE_CODE4ds: TDataSource;
change4ds: TDataSource;
private
{ Private declarations }
public
{ Public declarations }
end;
var
DataM: TDataM;
implementation
{$R *.dfm}
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?