资源简介

PLSQL Developer V11.0.6 64位 绿色版,无需安装,直接解压。

资源截图

代码片段和文件信息

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

// 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;
  }
}
//---------------------------------------------------------------------------

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-07-01 21:52  PLSQL Developer V11.0.6\
     文件        2048  2016-07-01 21:52  PLSQL Developer V11.0.6\aalf.dat
     文件           0  2003-03-13 18:55  PLSQL Developer V11.0.6\AfterConnect.sql
     文件        1983  2004-08-14 17:30  PLSQL Developer V11.0.6\BeautifierPreview.cfg
     目录           0  2016-07-01 21:47  PLSQL Developer V11.0.6\Books\
     文件          51  1999-02-15 00:53  PLSQL Developer V11.0.6\Books\Books.txt
     目录           0  2016-07-01 21:47  PLSQL Developer V11.0.6\Books\PlugIns\
     文件         125  2011-10-14 13:51  PLSQL Developer V11.0.6\Books\PlugIns\PlugIns.txt
     文件        1250  2011-02-11 15:46  PLSQL Developer V11.0.6\CANames.sql
     目录           0  2016-07-01 21:46  PLSQL Developer V11.0.6\Database\
     目录           0  2016-07-01 21:46  PLSQL Developer V11.0.6\DataGenerator\
     目录           0  2016-07-01 21:46  PLSQL Developer V11.0.6\DataGenerator\DefaultData\
     文件        3465  2004-05-19 13:47  PLSQL Developer V11.0.6\DataGenerator\DefaultData\charsets.data
     文件       14224  2004-07-28 11:01  PLSQL Developer V11.0.6\DataGenerator\DefaultData\cities.data
     文件       13356  2003-10-05 11:39  PLSQL Developer V11.0.6\DataGenerator\DefaultData\companies.data
     文件        4308  2003-10-12 11:44  PLSQL Developer V11.0.6\DataGenerator\DefaultData\countries.data
     文件        6462  2003-09-20 16:12  PLSQL Developer V11.0.6\DataGenerator\DefaultData\firstnames.data
     文件       11892  2003-09-20 16:12  PLSQL Developer V11.0.6\DataGenerator\DefaultData\lastnames.data
     文件        5761  2004-07-07 12:59  PLSQL Developer V11.0.6\DataGenerator\DefaultData\text.data
     文件        1594  2004-07-06 14:09  PLSQL Developer V11.0.6\DataGenerator\DeptEmpDemo.gd
     目录           0  2016-07-01 21:46  PLSQL Developer V11.0.6\DataGenerator\UserData\
     文件       37761  2005-09-28 13:30  PLSQL Developer V11.0.6\DataGenerator\UserData\Components.txt
     文件        1414  2003-09-08 21:21  PLSQL Developer V11.0.6\DataGenerator\UserData\Elements.txt
     文件         165  2003-01-25 17:48  PLSQL Developer V11.0.6\default.dat
     文件       11870  2015-05-27 12:10  PLSQL Developer V11.0.6\default.kwf
     目录           0  2016-07-01 21:46  PLSQL Developer V11.0.6\Demo\
     文件         250  1998-11-29 19:59  PLSQL Developer V11.0.6\Demo\deptname.tst
     文件        2595  1998-11-29 20:20  PLSQL Developer V11.0.6\Demo\employee.pck
     文件         194  1998-11-29 20:09  PLSQL Developer V11.0.6\Demo\employee.sql
     目录           0  2016-07-01 21:46  PLSQL Developer V11.0.6\Demo\GraphTemplates\
     文件        1415  2005-11-16 17:34  PLSQL Developer V11.0.6\Demo\GraphTemplates\ENAME+SAL-COMM-DEPTNO.graph
............此处省略543个文件信息

评论

共有 条评论