• 大小: 14.47M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-16
  • 语言: 数据库
  • 标签: 其他  

资源简介

PLSQLDeveloper.rar

资源截图

代码片段和文件信息

// PL/SQL Developer Plug-In demo
// Copyright 1999 Allround Automations
// support@allroundautomations.nl
// http://www.allroundautomations.nl

// This demo shows an elementary interface

//---------------------------------------------------------------------------
#include 
#pragma hdrstop
//---------------------------------------------------------------------------
int WINAPI DllEntryPoint(HINSTANCE hinst unsigned long reason void*)
{
    return 1;
}
//---------------------------------------------------------------------------
// The three basic export functions
extern “C“
{
  __declspec(dllexport) char* IdentifyPlugIn(int);
  __declspec(dllexport) char* CreateMenuItem(int);
  __declspec(dllexport) void  OnMenuClick(int);
}

// Description of this Plug-In (as displayed in Plug-In configuration dialog)
char *const Desc = “C++Builder Plug-In demo 1“;
int PlugInID;


//---------------------------------------------------------------------------
// Plug-In identification a unique identifier is received and
// the description is returned
char* IdentifyPlugIn(int ID)
{
  PlugInID = ID;
  return Desc;
}
//---------------------------------------------------------------------------
// Creating a menu item
char* CreateMenuItem(int Index)
{
  switch (Index)
  {
    case 1 : return “Tools / &Plug-In 1 Demo...“;
  }
  return ““;
}
//---------------------------------------------------------------------------
// The menu item got selected
void OnMenuClick(int Index)
{
  switch (Index)
  {
    case 1 :
      ShowMessage(“Hello“);
      break;
  }
}
//---------------------------------------------------------------------------

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2048  2007-08-22 22:46  PLSQL Developer\aalf.dat

     文件     442144  2007-09-10 00:00  PLSQL Developer\aapf.dll

     文件          0  2003-03-13 00:00  PLSQL Developer\AfterConnect.sql

     文件       1983  2004-08-14 00:00  PLSQL Developer\BeautifierPreview.cfg

     文件         51  1999-02-14 00:00  PLSQL Developer\Books\Books.txt

     文件       3465  2004-05-19 00:00  PLSQL Developer\DataGenerator\DefaultData\charsets.data

     文件      14224  2004-07-28 00:00  PLSQL Developer\DataGenerator\DefaultData\cities.data

     文件      13356  2003-10-05 00:00  PLSQL Developer\DataGenerator\DefaultData\companies.data

     文件       4308  2003-10-12 00:00  PLSQL Developer\DataGenerator\DefaultData\countries.data

     文件       6462  2003-09-20 00:00  PLSQL Developer\DataGenerator\DefaultData\firstnames.data

     文件      11892  2003-09-20 00:00  PLSQL Developer\DataGenerator\DefaultData\lastnames.data

     文件       5761  2004-07-07 00:00  PLSQL Developer\DataGenerator\DefaultData\text.data

     文件       1594  2004-07-06 00:00  PLSQL Developer\DataGenerator\DeptEmpDemo.gd

     文件      37761  2005-09-28 00:00  PLSQL Developer\DataGenerator\UserData\Components.txt

     文件       1414  2003-09-08 00:00  PLSQL Developer\DataGenerator\UserData\Elements.txt

     文件        165  2003-01-25 00:00  PLSQL Developer\default.dat

     文件       8372  2007-04-03 00:00  PLSQL Developer\default.kwf

     文件        250  1998-11-29 00:00  PLSQL Developer\Demo\deptname.tst

     文件       2595  1998-11-29 00:00  PLSQL Developer\Demo\employee.pck

     文件        194  1998-11-29 00:00  PLSQL Developer\Demo\employee.sql

     文件        244  1998-11-29 00:00  PLSQL Developer\Demo\mgrname.tst

     文件     402944  2001-08-07 00:00  PLSQL Developer\ExamDiff\ExamDiff.exe

     文件       6106  2001-05-11 00:00  PLSQL Developer\ExamDiff\Readme.txt

     文件       5239  2001-08-07 00:00  PLSQL Developer\ExamDiff\whatsnew.txt

     文件        278  2007-11-02 00:00  PLSQL Developer\file_id.diz

     文件       1415  2005-11-16 00:00  PLSQL Developer\GraphTemplates\ENAME+SAL-COMM-DEPTNO.graph

     文件       1057  2005-11-16 00:00  PLSQL Developer\GraphTemplates\HIREDATE+SAL-COMM.graph

     文件        948  2005-11-16 00:00  PLSQL Developer\GraphTemplates\NAME+OMZET-AANTAL.graph

     文件        246  2002-11-03 00:00  PLSQL Developer\Icons\Alarm.bmp

     文件        822  1998-02-12 00:00  PLSQL Developer\Icons\Apple.bmp

............此处省略519个文件信息

评论

共有 条评论