• 大小: 14.88MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-21
  • 语言: 数据库
  • 标签: PLSQL  Developer  

资源简介

plsqldev7.1.5,无必安装,解压后直接使用,Oracle连接工具。

资源截图

代码片段和文件信息

// 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  2016-08-15 09:17  PLSQL Developer\
     文件        2048  2007-08-22 10:46  PLSQL Developer\aalf.dat
     文件      442144  2007-09-09 12:00  PLSQL Developer\aapf.dll
     文件           0  2003-03-12 12:00  PLSQL Developer\AfterConnect.sql
     文件        1983  2004-08-13 12:00  PLSQL Developer\BeautifierPreview.cfg
     目录           0  2016-08-15 09:17  PLSQL Developer\Books\
     文件          51  1999-02-14 12:00  PLSQL Developer\Books\Books.txt
     目录           0  2016-08-15 09:17  PLSQL Developer\DataGenerator\
     目录           0  2016-08-15 09:17  PLSQL Developer\DataGenerator\DefaultData\
     文件        3465  2004-05-18 12:00  PLSQL Developer\DataGenerator\DefaultData\charsets.data
     文件       14224  2004-07-27 12:00  PLSQL Developer\DataGenerator\DefaultData\cities.data
     文件       13356  2003-10-04 12:00  PLSQL Developer\DataGenerator\DefaultData\companies.data
     文件        4308  2003-10-11 12:00  PLSQL Developer\DataGenerator\DefaultData\countries.data
     文件        6462  2003-09-19 12:00  PLSQL Developer\DataGenerator\DefaultData\firstnames.data
     文件       11892  2003-09-19 12:00  PLSQL Developer\DataGenerator\DefaultData\lastnames.data
     文件        5761  2004-07-06 12:00  PLSQL Developer\DataGenerator\DefaultData\text.data
     文件        1594  2004-07-05 12:00  PLSQL Developer\DataGenerator\DeptEmpDemo.gd
     目录           0  2016-08-15 09:17  PLSQL Developer\DataGenerator\UserData\
     文件       37761  2005-09-27 12:00  PLSQL Developer\DataGenerator\UserData\Components.txt
     文件        1414  2003-09-07 12:00  PLSQL Developer\DataGenerator\UserData\Elements.txt
     文件         165  2003-01-24 12:00  PLSQL Developer\default.dat
     文件        8372  2007-04-02 12:00  PLSQL Developer\default.kwf
     目录           0  2016-08-15 09:17  PLSQL Developer\Demo\
     文件         250  1998-11-28 12:00  PLSQL Developer\Demo\deptname.tst
     文件        2595  1998-11-28 12:00  PLSQL Developer\Demo\employee.pck
     文件         194  1998-11-28 12:00  PLSQL Developer\Demo\employee.sql
     文件         244  1998-11-28 12:00  PLSQL Developer\Demo\mgrname.tst
     目录           0  2016-08-15 09:17  PLSQL Developer\ExamDiff\
     文件      402944  2001-08-06 12:00  PLSQL Developer\ExamDiff\ExamDiff.exe
     文件        6106  2001-05-10 12:00  PLSQL Developer\ExamDiff\Readme.txt
     文件        5239  2001-08-06 12:00  PLSQL Developer\ExamDiff\whatsnew.txt
............此处省略520个文件信息

评论

共有 条评论