PowerBuilder (PBOrca) 自动构建
我有一个每天晚上运行的 PowerBuilder 应用程序的自动构建流程。 我用来设置此功能的资源是 http://dm.char.com.ua /pb/pborca.htm。 我不清楚 PBOrca 是否是官方支持的工具,或者是谁负责它(是运行链接网站的那位先生吗?)。 我从该链接下载了它,但我相信可能有更新的版本。 我从哪里得到这个? 我用谷歌搜索没有结果,并在 sybase.com 上找到了有关使用的文档,但没有实际下载。
我寻找新版本的原因是 PB11.5 支持的新样式控件无法从自动构建中获得,但在开发中可以正常工作,因此当我们部署构建时,它使用一种 Windows 经典主题。 我在其他人的 orca 脚本中找到了在线传递 NEWVSTYLECONTROLS 的参考,但当我尝试它时,它抱怨参数数量错误,并且我查看的示例有不同的参数列表。
谢谢你的时间。
艾伦
I have a working automated build process for our PowerBuilder app running every night. The resource I used to set this up was http://dm.char.com.ua/pb/pborca.htm. It's not clear to me whether PBOrca is an officially supported tool or who is in charge of it (is it the gentleman who runs the linked site?). I downloaded it from that link but I believe there may be a newer version out. Where would I get this? I have googled to no avail and have found documentation on usage at sybase.com but no actual download.
The reason I am looking for a new version is the new style controls supported in PB11.5 are not available from the automated build, yet work fine from development, so when we deploy the build it uses a sort of Windows classic theme. I have found references to passing NEWVSTYLECONTROLS online in other people's orca scripts but it complains about the wrong number of parameters when I try it and the examples I look at have a different parameter list.
Thanks for you time.
Alan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
ORCA 曾经上传到 CodeXchange,但我看到上传的最后一个版本是 10.2。 CX 正处于转型期,因此这可以解释为什么它不是最新的。
然而,现在使用 ORCA 来构建不再像从头开始制作蛋糕,而更像是自己种植小麦来制作蛋糕。 (从蛋糕装饰师的儿子那里得到的,它们都是混合而成的。;-))ORCAScript 是一种用于构建的类似批处理的语言。 请参见应安装在您的计算机上的《用户指南》中的附录 B,或链接到 在线用户指南。 另请注意,从 PB8 开始,您可以从以下位置部署项目命令行。
祝你好运,
特里
ORCA used to be uploaded to CodeXchange, but the last version I see uploaded is 10.2. CX is in a transition, so that may explain why it's not up to date.
However, using ORCA to build these days is less like making a cake from scratch, and more like growing your own wheat to make a cake. (Take it from a cake decorator's son, they're all from mixes. ;-) ) ORCAScript is a batch-like language to do builds. See Appendix B in the User Guide that should be installed on your machine, or link to the User Guide online. Also note that as of PB8, you can deploy projects from the command line.
Good luck,
Terry
我们在 E.Crane PowerGen 方面拥有丰富的经验。 它不是免费的,但它是自动化构建过程的可靠解决方案。
http://ecrane.com/powergen-overview/
We have good experience with E.Crane PowerGen. It's not free but it is a solid solution for your automated build process.
http://ecrane.com/powergen-overview/
自从我使用 powerbuilder 以来已经有一段时间了。
直到几年前,还有一些为个人创建可执行文件而编写的工具。 随着 PB 社区变得越来越小,这些人很可能还没有将该实用程序更新到新版本。
最好的方法是使用 Sybase 提供的 API 构建自己的应用程序。 您可能已经知道详细信息位于此位置。
http://manuals.sybase.com/onlinebooks/group -pb/adt0650e/orca/@Generic__BookTextView/86
祝你好运。
Its been a while since I used powerbuilder.
There were till some years back tools written for creating the executables by individuals. As the PB community is becoming smaller, it is most likely that these guys havent updated the utility to newer versions.
The best approach would be for you to build your own application using the API's given by Sybase. As you may already know the details are at this location.
http://manuals.sybase.com/onlinebooks/group-pb/adt0650e/orca/@Generic__BookTextView/86
Goodluck.
尝试:
构建可执行文件“easynexus32.exe”“wings.ico”“”“YYYYYYYY”newvstylecontrols
TRY :
build executable "easynexus32.exe" "wings.ico" "" "YYYYYYYY" newvstylecontrols
是的,ORCA 仍然是 PB 11.5.1 中包含的 Sybase 产品
处理脚本的二进制文件可以在以下位置找到:
c:\program files\Sybase\shared\powerbuilder\orcascr115.exe
我最近使用了与 Philip Ross 描述的语法相同的语法。
Yes, ORCA is still a Sybase product included in PB 11.5.1
The binary that process the script can be found in places like :
c:\program files\Sybase\shared\powerbuilder\orcascr115.exe
I ended up recently with the same syntax as the one described by Philip Ross.