64位版本的 PLSQL 正式版,只能运行在64位系统中,需要你安装 64 位的 Oracle 客户端。 安装请查看说明。 APRIL 17, 2020 - VERSION 14.0 RELEASED Built-in Version Control support for Git and Subversion For these file control operations PL/SQL Developer relies on a 3rd party shell extension that must be installed on your system. In the screenshots above “GIT Extensions” has been used. Worksets A workset is a set of Program Windows, SQL Windows, Test Windows, Command Windows, Report Windows and Diagram Windows that you are working on. Internal difference viewer The new viewer allows you to ignore differences in case and white space as usual, but it can also ignore differences in comments. Program Window enhancements The Program Window now highlights transaction statements, so that you can visually recognize the code that affects a transaction. As soon as you place the cursor on a transaction statement, all related statements within a program unit will be highlighted Debugger enhancements A variable name and value can now be copied to the clipboard through the new “Copy variable” popup menu item. Editor enhancements A function key “Editor: Refresh Code Assistant” has been added, to bring the Code Assistant up to date after creating new database objects. When selecting a word, all matching words will be highlighted. Marked editor text is automatically copied to the search field of the Find function. SQL Window enhancements You can now display multiple result sets simultaneously and can compare them: CLOBs and BLOBs are now fetched on demand to improve query performance. Single record view will now show column comments if available. The EXCEL and CSV export filenames can now include substitution variable values. The EXCEL and CSV export filenames can now include %time%, %hh%, %mi% and %ss% variables. For the “Export Results as SQL file” function you can now customize the initialization and finalization. The WITH_PLSQL hint is now supported. Command Window enhancements New EXPORT TABLES and EXPORT OBJECTS commands have been added. This allows you to automate frequent export jobs. You can easily build the command-line from the interactive export tools. The BEAUTIFY command now supports wildcards. The CONNECT command now shows the database list after typing @. The WITH_PLSQL hint is now supported. Object Browser enhancements The Object Browser will now show all overloaded versions of functions and procedures. You can now filter on multiple comma-separated object names (e.g. “dept%, emp%”). You can now refresh materialized views from the popup menu. File Browser enhancements Git and Subversion support has been added. File icons now indicate the PL/SQL Developer file type. You can now filter files based on the name, size, date, read-only status, and version control status. You can specify the filter in the options dialog You also can enter the filter expression directly at the top of the File Browser All windows shell functions are now available from the popup menu. You can now create a specific PL/SQL Developer file type from the “Create File” popup menu item. You can now add multiple files to a project at once. Project enhancements Git and Subversion support has been added. File icons now indicate the PL/SQL Developer file type. Table Definition Editor enhancements The Index and Partition storage can now be edited, copied, and pasted directly in the grid. Support for Row Archival has been added. Test Manager enhancements You can now add multiple Test Script files at once. You can now drag & drop Test Script files from the File Browser. You can now enable or disable multiple items at once. Connection List enhancements Window icons now indicate the PL/SQL Developer window type. Connection status icon moved to the left for consistency. Session Window enhancements You can now define Session Actions that can be performed from the popup menu of the session list: Session Actions can display feedback by writing dbms_output. Other enhancements Function keys have been added for “Search Bar” functions (Focus, Search, Go to next, Go to previous). Substitution variable checkbox and list values can now refer to other variable values as &variable. An “Unregister License” function has been added. Fixes Fixes for multiple monitors with different display scaling (file selector, print dialogs, MDI window title bars, scrollbar width) Conditional sections could be displayed incorrectly in the Code Contents Define Connections and Select Connection tree was incorrect on a secondary display with different DPI settings Menu items with icons from templates were too small on high dpi monitors Ribbon / Menu customization form options were not preserved Editors with a right margin and wrapping enabled did not wrap at the right margin View Stack Dump function now places the error lines in center of the editor Connection matches did not process proxy user expressions (user1[user2]@database) correctly for the application background DBMS_Jobs could not be edited
2024-10-16 08:08:44 51.28MB PLSQL oracle
1
在Delphi编程环境中,多语言开发是一个重要的领域,特别是在全球化日益普及的今天。Delphi作为一个强大的Windows应用程序开发工具,提供了丰富的功能来支持多语言应用程序的创建。本教程将重点介绍如何利用CnPack多语言控件进行多语言切换,包括中英文以及繁简中文的转换。 CnPack是一个非常流行的Delphi插件,它提供了大量的控件和工具,其中就包括多语言支持。在多语言开发中,CnPack的主要组件是CnLangEditor和CnLangManager。CnLangEditor用于编辑和管理应用程序的语言资源,而CnLangManager则负责在运行时动态地切换语言环境。 在`delphi 多语言开发(CNPack控件的实现).docx`文档中,你将找到详细的步骤指导,包括如何安装和配置CnPack,如何创建语言资源文件,以及如何在代码中调用CnLangManager来实现语言切换。通常,这涉及到以下几个关键步骤: 1. **安装CnPack**:你需要下载并安装CnPack到你的Delphi集成开发环境(IDE)中。安装完成后,CnPack的组件会出现在工具箱上,方便你在设计时使用。 2. **创建语言资源**:使用CnLangEditor,你可以为你的应用程序创建新的语言资源文件。每个语言资源文件包含了一组特定语言的字符串,这些字符串与你的应用程序中的固定文本相对应。 3. **添加CnLangManager**:在你的主窗体或应用程序入口点添加一个CnLangManager组件,并设置其属性,如默认语言、可选语言列表等。 4. **标记本地化字符串**:在你的源代码中,你需要将所有需要本地化的字符串替换为CnPack提供的函数,如`CnGetLangString()`。这样,当语言环境改变时,这些字符串会自动根据新的语言设置进行更新。 5. **实现语言切换**:在程序运行时,通过调用CnLangManager的方法,例如`SwitchLanguage()`,用户可以选择不同的语言,程序会即时更新所有的本地化字符串。 6. **处理繁简切换**:对于繁简中文的切换,CnPack可能已经内置了支持,只需确保你的语言资源文件包含了繁体中文和简体中文的字符串,然后让用户在提供的语言列表中选择即可。 在`02_CNPack`文件中,可能包含了更多关于CnPack的使用示例和详细信息,建议仔细研究以加深理解。通过CnPack,Delphi开发者可以轻松地构建具有多语言支持的应用程序,满足全球不同地区用户的语言需求。
1
《构建多语言AI智能客服系统:基于PHP的在线客服源码解析》 在现代商业环境中,高效的客户服务是提升用户体验和企业竞争力的关键因素之一。随着人工智能技术的发展,AI智能客服系统已经成为许多企业的首选解决方案。本文将深入探讨一款名为“AI智能客服系统在线客服源码”的PHP源码,该源码支持多达20种语言,为企业提供全球化服务。 这款源码的核心特性在于其多语言支持,覆盖20个国家的语言,包括但不限于中文、英文、法文、德文、日文等,这意味着无论客户来自何处,都能享受到本地化的服务体验。这一特性对于那些跨国运营或目标市场多元化的公司来说,无疑是极大的优势,它能够帮助企业快速适应不同地区的客户需求,降低语言障碍,提高客户满意度。 该源码是独立部署的,无任何授权限制。这意味着企业可以完全掌控客服系统的运行环境,避免依赖第三方服务,同时可以根据自身需求进行定制化开发,增加特定功能或者优化性能。这种灵活性使得企业在使用过程中拥有更大的自主权,也降低了对外部服务中断的依赖风险。 源码中包含的文件结构清晰,便于理解和维护。例如,`composer.json`是PHP项目的依赖管理文件,用于定义项目所需的库和版本,方便开发者通过Composer来安装和管理依赖;`init.sh`和`run.sh`是脚本文件,通常用于启动和管理应用服务;`LICENSE.txt`则明确了源码的许可协议,保障了合法使用;`phpunit.xml`是PHPUnit测试框架的配置文件,可以帮助开发者进行单元测试,确保代码质量;而`application`、`install`、`apppzld`和`public`等目录则是源码的主要业务逻辑和公共资源,如控制器、模型、视图以及静态资源等。 在实际部署和使用过程中,企业需要关注几个关键点:一是服务器环境的配置,确保PHP运行环境和必要的扩展已安装;二是数据库的设置,根据源码提供的安装指南进行数据迁移和配置;三是对源码的熟悉和调试,根据业务需求进行调整。此外,由于源码带有前端注册功能,意味着系统具备用户管理和登录功能,这为实现个性化服务和数据分析提供了基础。 这款AI智能客服系统在线客服源码提供了一个强大且灵活的平台,帮助企业快速构建起智能化的客户服务系统。通过深度利用其多语言特性,结合独立部署的优势,企业不仅可以提高服务质量,还能进一步优化运营效率,提升品牌形象。对于有志于开发或改进在线客服系统的IT从业者而言,这款源码无疑是一个值得研究和学习的宝贵资源。
2024-07-18 17:10:37 33.19MB 人工智能
1
为《使用C# 完美实现多语言版本Windows应用程序》所附源代码,以便更好的学习C#窗体程序多语言版本的制作。 本源代码可以任何方式免费使用,但转载请注明出处 另:代码中仅处理资源,没有本地格式信息的处理,有这方面的资源请大家在评论区加注链接,方便大家学习,谢谢 看代码时请参考本人博客中的对应文章 《使用C# 完美实现多语言版本Windows应用程序》
2024-05-22 17:38:32 36KB
1
在国际化环境下,越来越多的程序需要做多语言版本,以适应各种业务需求的变化。在Winform应用程序中实现多语言也有常规的处理方式处理,不过需要针对每个语言版本,重新修改Winform界面的显示,对一些常规的辅助类,也需要引入一个统一的资源管理类来处理多语言的问题,相对比较繁琐。本篇随笔针对多语言的需求,希望尽量避免繁琐的操作,既能符合本地语种开发人员的开发习惯,又能快速实现Winform程序的多语言场景处理。 1、多语言开发的困惑和思路 在常规的多语言版本程序中,开发总是伴随着很多不愉快的事情,大概列举一些仅供参考: 1)对窗体的多语言处理时,维护多个语言版本的界面非常繁琐; 2)多语言处理的
2024-05-21 11:36:09 358KB
1
语言卫星程序集制作工具,该工具可以自动生成Express中没有的zh-CN的资源文件,并且可以将现有已汉化好的资源文件中的中文字符串保存为汉化字典。在版本升级的时候可以用汉化字典将新版本中没有汉化的资源文件汉化。并且,使用了Bing翻译器,可以讲单个资源文件中没有汉化的资源自动汉化,并保存到字典。同时,可以将资源项目编译。 工具中提供签名替换功能。将新编译的资源卫星文件的签名替换成原始程序集的签名。因此可以讲新编译的程序集应用到官方DLL程序集中。
2024-04-19 09:52:20 2.78MB DevExpress
1
超强OCR识别软件多语言免安装版.zip
2024-03-05 19:44:04 364.71MB OCR
1
1、基于QT的自动在线翻译工具,适用于国际化多语言批量翻译 2、使用百度翻译账号自动在线翻译,账户过期可重复申请使用。 3、支持文件导入翻译和翻译后结果导出 4、支持一键全部翻译和单独翻译
2024-01-19 10:36:42 3.87MB
Qt实现国际化,能切换程序的语言
2024-01-17 14:53:15 5KB Qt国际化
1
PLSQL Developer v14.0.4.1982 64bit + SN(多语言版含简中)。从PLSQL v12开始,界面风格有较大改动,同Win10一样成平面非立体风格。亲测可用!Enjoy!
2024-01-05 14:38:13 53.05MB plsql
1