similar to: Possible Problems with the Sybase product PowerBuilder

Displaying 20 results from an estimated 400 matches similar to: "Possible Problems with the Sybase product PowerBuilder"

2011 Jun 22
8
Wine + PowerBuilder + Sybase ODBC
Hi there, I'm having a PowerBuilder aplication that connects to a Sybase data base through an ODBC. The application works fine on Windows, but I want to make it run on a Mandriva 2010.2 distribution. The fact is, I could run it on a machine with Mandriva 2010.2, but now I want to do an installation from scratch to another computer, but it does't work. The kernel version that I'm
2012 Jun 11
3
Re: Wine + PowerBuilder + Sybase ODBC
aotheoverlord wrote: > > > Maybe I missed it, but could you tell us which version of PowerBuilder you are using? PowerBuilder 7... I tried to compile the application in PowerBuilder 6, but it doesn't works.
2008 Mar 15
12
Problem with PowerBuilder 6-based app
Hello to all; I'm looking for somebody who has tried powerbuilder 6-based apps in the newest versions of Wine (currently I'm using v0.9.57 in Debian Etch). Well, the situation is: I want to use a Sybase-based database management system, using Sql Anywhere 10 as the DB server and a powerbuilder-based app as the client. So I get the Anywhere 10 version for GNU/Linux, configure it and its
2010 Sep 17
1
Powerbuilder Application Slow with any inner dialogs
Hi All I am using wine for a Powerbuilder 7 Application. Complete functionality works fine, as of now have not found anything with is not working. The current concern is with the response time of any dialog popup, its is around 20 secs slower than same app on windows machine. I have seen everytime a window suppose to popup, the cpu is 100%. Also I have seen the same application on a dual core
2009 Mar 27
6
gecko not displaying html
Hello, Im having a problem with gecko and an aplication built on PowerBuilder. My application calls some sort of HTML rendering and gecko is downloaded. After downloading, I can browse the menus but not the content in those. I only see a white screen The debug output: a) When I change the view in the menu list i get this err:mshtml:nsChannelBSC_stop_binding RemoveRequest failed: 80004005 b)
2009 Jan 06
2
How a patch is included in a wine version
Hello ppl In my wine usage experience, I got a patch from Lei Zhang, and i worked 100% in my app. When will this patch be included in a wine version ? patch refers to http://bugs.winehq.org/show_bug.cgi?id=15543 another question, Sometimes powerbuilder application search for system32/drivers/etc/{hosts,services} files Can this be created when we execute winecfg ?
2007 Aug 20
1
Common routines for custom functions
Hello I want to share some common subroutines between my custom functions. Given the way Puppet loads the .rb files in $plugindest/puppet/parser/functions, does anyone know how should I lay this out? I tried creating a module myutilities def self.blah() ... end end (NOT within the newfunction() call) in one of the (top-level) functions'' .rb file. However, calling
2007 Jun 11
1
Arbitrary backups
Anyone think it would be useful to have files backed up to the filebucket even if they are not controlled by Puppet? 1 vote here. Derek ------------------------------------------------------------------------ For important statutory and regulatory disclosures and more information about Barclays Capital, please visit our web site at http://www.barcap.com. Internet communications are not secure
2011 Mar 29
2
Re: Error running application, please Help
Hi vitamin ... I can see that on release 1.2.3 TCP/IP networking support has been added ... I am trying since years to run a powerbuilder application under wine, the application need to connect with a microsoft 2003 active directory server for validate the user (just make a ldap query).... but the application crash when try to do the validation.... with the new features ... could I make
2007 Dec 10
1
One more HEAD foible against our config
One more error/warning from the latest Puppet from git: In the provider I have KEYS = Facter.value(:roothome) + "/.ssh/authorized_keys" Puppet::Type.type(:authorizedkey).provide(:parsed, ... I get an error on the Puppetmaster: Could not autoload "/usr/lib/ruby/site_ruby/1.8/puppet/provider/authorizedkey/parsed.rb": undefined method `+'' for nil:NilClass Could not
2007 Nov 19
1
Targets firing out of order
> Example class that brings on this behaviour: > > Class ldap::setup { > $loc = getLocation() #Custom function that returns a location > based on IP address fact > > case $loc { > london: { > $bind = "cn=base,dc=site,dc=com" > notice ("Target 1 - bind - ${bind}") > } > ... >
2007 Oct 08
2
Noop functionality
I''m thinking about how to set up the processes for Production puppet runs now. Being ultra-conservative here, we''d like to see what would happen before pressing the red button. I can run in noop mode, and everything is evaluated but nothing is done. A YAML report magically appears on the Puppetmaster which my script parses and spits out something the management can read
2004 Dec 09
1
Chainloading from pxelinux
Can pxelinux be used to chain other *network* bootloaders directly? I.e., keep the pxe stack but replace itself with an alternate network boot loader (eg, the intel nbp, or, more specificly, an arbitrary bootloader for another OS)? I'm sure this is an obvious FAQ but I can't find reference to it (sorry). Obviously memdisk could be used to load other OSes, but I have been given a strict
2007 Aug 30
4
Command line vs config file override for configuration params
Hi all I''m working on my modular recursive Makefile & svn-backed home for my Puppet manifests, custom functions, types, etc. So I''m trying to put together individual modules, test targets and so on. I have noticed that the $libdir (and probably the other configuration options too) sources from puppet.conf are not overridden by specifying --libdir=blah on the commmand line
2009 Dec 22
0
slow survfit -- is there a better replacement?
Using R 2.10 on Windows: I have a filtered database of 650k event observations in a data frame with 20+ variables. I'd like to be able to quickly generate estimate and plot survival curves. However the survfit and cph() functions are extremely slow. As an example: I tried results.cox<-coxph(Surv(duration, success) ~ start_time + factor1+ factor2+ variable3, data=filteredData) #(took a
2007 May 11
3
Exception handling in custom facts
Hi. I''d like to use exception handling in my custom facts. For example, in plain Ruby: begin buildno = '''' bcrelease = open("/etc/BCrelease") while (line = bcrelease.gets) line = line.chomp buildno = $1 if line =~ /^Build:\s+(\d+)/ end bcrelease.close print "#{buildno}\n" rescue print "No
2007 May 24
2
Reusing definitions - need to pass variable in the title
I recently tidied up a class/definition combo that sets /etc/issue and /etc/issue.net. This failed: define issuefile($path) { file { issue: owner => root, group => root, mode => 0644, content => template("issue_conf") } } class issue { issuefile { "issue": path => "/etc/issue" } } class
2007 Nov 29
2
Overriding resources in a define in a module - can''t get syntax right
Maybe it works, maybe it doesn''t, but I sure as hell can''t make it work. I get stuck with "Could not find object(s)" whatever I do This is my module init.pp class ztest::setup { notice "MAIN SETUP CLASS" file { directfile: path => "/etc/directfile", owner => root, group => root, mode => 0644, content
2007 Jun 18
0
Sybase ASA 9 fails to start
Hi all, Trying to get an inhouse app running. It's built using Sybase PowerBuilder 11 using Sybase Adaptive Server Anywhere 9 as a local database, and it's the ASA9 that won;t start up. I get a dialog box saying "Unable to initialize NT performance monitor data area" followed by the following dump: p.s. I know debugging this is going to be hard, so I'm happy to do the
2007 Dec 18
2
Testing / Coding methodologies?
I''ve been having great "fun" testing the new (Puppetised) build end-to-end for several days now. The majority of the fun has been coming from vendor packages (no names mentioned), typically with conflicting permissions on files, or perhaps different home directories, UIDs for the app users so it matters in which order you do things in. My current methodology is to go through