PB apps will run just fine.. I have our production apps running on 64 bit servers, and the PB apps have been working fine. Places where you may see issues are...
Thanks very much Trevor and Vikas. It puts my mind at ease, one less thing to worry about during this migration. Dan Mullings ABC Radio Networks Dallas, Texas...
Hello, I was doing one such migration a few weeks ago. Just wanted to add..... Usually the problems arise only in the third party tools (APIs, Activex...
I got a Question : Our Web Site sends us EMails containing information that needs to be stored in a Local Database. Question is: What is the most eficient way...
PBv10.5 build 5079 PFC based MDI application Had anyone heard if any of the PB v10.5 PBDs have a memory leak in them? I got a hot email today from the SysAdmin...
Hi to all. Just having a wild imagination. I don't know if this can be done using PowerBuilder and also without using datawindow. I have some script that can...
I think its true. Beacuse we have upgraded the old version of our application with PB105,but the client started complining that applicaiton is grabbing...
I did run into a memory leak a year and a half ago. The issue was not with PB 10.5 but rather with Microsoft XP operating system and tablet PCs. There is a MS...
FYI - ....Not that I could find. Here's what I've done: 1. I've looked through the README notes on all PBv10.5 code upgrades to our version (build 5079). There...
1. Build and distribute EXE's, not PBDs. 2. If your app is license-based, build into the app a License.DLL that contains an expiration date. Whenever the...
I am trying to issue a command that works from dbisql, but if run from PowerBuilder I get a syntax error: SQLSTATE = 37000 [Sybase][ODBC Driver][SQL...
Oops, I did some editing on the error message that probably made it a little confusing. This should make more sense: SQLSTATE = 37000 [Sybase][ODBC Driver][SQL...
Yes: wrap your sql string in single quotes, and simply use normal double-quotes within this string. Example: ls_SQL = 'DELETE FROM ' + as_Table + & ' WHERE '...
Cool! I didn't realize you could do that. But how about commands where both double-quotes and single-quotes are needed, such as the one in the error message...
If possible, make all of the "interior" quotes of the same type - single or double - and wrap the SQL in the OTHER type of quotes. If that is NOT possible for...
Using Win Vista and PB 11 and Office 2007. Has anyone encountered here that when they export a datastore to excel, the export process is very slow and takes so...
Dear All, We have PB 10.0. We have an OLE control to populate employee's scanned photo and then we save it in database. But recently after upgrading to Windows...
Well, our company is small enough that I'm also the DBA. :) As far as I know, there is nothing special defined as an escape character. It turns out that I can...
Hi All, Any one has developed any tool to convert a pbl file to dot net application files like c# files. Please send a sample skeleton code if any. Thanks in...
if i get u right , to access data without datawindow , u can use the declare cursor , u can find about it in help files ________________________________ ...
Hi Dear all, I want to develop an appliaction in PowerBuilder in some Indian language like Hindi or Gujrati or Bengali. I want to know how can I do it? Your...
Hi all, I am new to web forms and I need help on how to prevent the datawindow from refreshing. I read from the deployment manual that you need to use...
Give us a small sample of the data you wish to retrieve, please. Under MOST circumstances, a simple SELECT will return everything that is in the database that...
If you're trying to use embedded SQL in PowerBuilder to get more than one row at a time, you'll need to use a cursor. A datastore may be a better choice,...