资源简介

PLSQLDeveloper_解压版(64位可用),内设readme说明

资源截图

代码片段和文件信息

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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-08-11 15:43  PLSQL\
     目录           0  2014-08-11 15:35  PLSQL\instantclient_11_2\
     文件       29184  2010-04-02 07:51  PLSQL\instantclient_11_2\adrci.exe
     文件       12817  2010-04-02 07:51  PLSQL\instantclient_11_2\adrci.sym
     文件       96256  2010-04-01 23:50  PLSQL\instantclient_11_2\atl80.dll
     文件         586  2010-04-02 07:53  PLSQL\instantclient_11_2\BASIC_README
     文件       65536  2010-04-02 07:51  PLSQL\instantclient_11_2\genezi.exe
     文件       28201  2010-04-02 07:51  PLSQL\instantclient_11_2\genezi.sym
     文件     1060864  2010-04-01 23:50  PLSQL\instantclient_11_2\mfc71.dll
     文件     1101824  2010-04-01 23:50  PLSQL\instantclient_11_2\mfc80.dll
     文件     1093120  2010-04-01 23:50  PLSQL\instantclient_11_2\mfc80u.dll
     文件       69632  2010-04-01 23:50  PLSQL\instantclient_11_2\mfcm80.dll
     文件       57856  2010-04-01 23:50  PLSQL\instantclient_11_2\mfcm80u.dll
     文件         456  2010-04-01 23:50  PLSQL\instantclient_11_2\Microsoft.VC80.ATL.manifest
     文件        1869  2010-04-01 23:50  PLSQL\instantclient_11_2\Microsoft.VC80.CRT.manifest
     文件        2371  2010-04-01 23:50  PLSQL\instantclient_11_2\Microsoft.VC80.MFC.manifest
     文件      479232  2010-04-01 23:50  PLSQL\instantclient_11_2\msvcm80.dll
     文件      548864  2010-04-01 23:50  PLSQL\instantclient_11_2\msvcp80.dll
     文件      348160  2010-04-01 23:50  PLSQL\instantclient_11_2\msvcr71.dll
     文件      626688  2010-04-01 23:50  PLSQL\instantclient_11_2\msvcr80.dll
     文件      987136  2010-04-02 07:42  PLSQL\instantclient_11_2\oci.dll
     文件      256775  2010-04-02 07:42  PLSQL\instantclient_11_2\oci.sym
     文件      102400  2010-02-24 01:06  PLSQL\instantclient_11_2\ocijdbc11.dll
     文件       22818  2010-02-24 01:06  PLSQL\instantclient_11_2\ocijdbc11.sym
     文件      348160  2010-04-02 07:08  PLSQL\instantclient_11_2\ociw32.dll
     文件       46447  2010-04-02 07:08  PLSQL\instantclient_11_2\ociw32.sym
     文件     1996390  2010-02-23 21:09  PLSQL\instantclient_11_2\ojdbc5.jar
     文件     2111338  2010-02-23 21:09  PLSQL\instantclient_11_2\ojdbc6.jar
     文件     1249280  2010-01-29 04:51  PLSQL\instantclient_11_2\orannzsbb11.dll
     文件      233019  2010-01-29 04:51  PLSQL\instantclient_11_2\orannzsbb11.sym
     文件      720896  2010-04-02 06:26  PLSQL\instantclient_11_2\oraocci11.dll
............此处省略565个文件信息

评论

共有 条评论