Re: Shared Variables behavior long ago
Thanks, Chris. I just wish I had that old Sybase coursebook. I can see the code plain as day. Don't remember if it was the FastTrack or the Internals course. But... it doesn't matter. People think I'm...
View ArticleRe: translate drop down calendar?
No, but we have extract objects out of (I think) PFC in the past like the auto-complete in dddw.
View ArticleRe: translate drop down calendar?
If your DDCalendar are from PFC, the pfc_n_cst_datetime object contains the month list (instance variable). String is_month[12] = { & "January", "February", "March", "April", &...
View ArticleDoes PowerBuilder 12.6 Connect to Oracle 11g or 12c on Exadata?
Good day, all! I have been unable to locate any documentation regarding Exadata and PowerBuilder. While I may be oversimplifying, I am guessing that if PB supports Oracle on a Windows server, it will...
View ArticleRe: PB 12.5 problems with MS Sql Native Client and windows 8
Same here - no problems using PB classic.
View ArticleDW SQL Painter Executing Bad Oracle SQL
PB 12.5.1 Build 4015 When going into the DW SQL Painter PB will execute the following Constraint Select: SELECT SYS.ALL_CONS_COLUMNS.COLUMN_NAME, SYS.ALL_CONSTRAINTS.CONSTRAINT_NAME FROM...
View ArticleRe: DW SQL Painter Executing Bad Oracle SQL
Chris,You did not mention Oracle version nor way you connect to it.Did you try to run this sql from sqlplus? Might be you need some stats being refreshed.Have you checked explain plan for this sql? I...
View ArticleRe: Is there a future after PowerBuilder 12.6?
RAD development does not mean that the applications created in PB are simple, rather it allows very complex data-driven applications with heavy maintenance requirements that can be handled effectively...
View ArticleRe: Is there a future after PowerBuilder 12.6?
Check out this two opposing views on the Native Apps (aka. Client/Server Apps) Versus HTML Apps (aka. Web Apps)...
View ArticleRe: 64 bit compiler woes
I see these all over the place. I don't believe these have any bearing on the issue we are experiencing
View ArticleSyntaxFromSQL
Hello We have applications in Powerbuilder 11.5 with Oracle 11G. We don’t use extended attributes, but we usein our applicationsSyntaxFromSQL As you know, this generates a lot of queries. We...
View ArticleRe: SyntaxFromSQL
Hi Frederic, I don't know a way and I think it is necessary to query the dictionary tables to generate the datawindow from SQL. Powerbuilder needs to know something about the columns data types and...
View ArticlePB 12.0 .Net Webservice PDF file open
Hi, I am using PB 12. to develop a .NET web service. It needs to read a PDF file stored on another server in a shared directory and returns it to the Web page for download purpose. The problem is that...
View ArticleRe: PB 12.0 .Net Webservice PDF file open
Hi Thierry; I perform these type of external file manipulations all the time in my Web Services *. Here are some observations though for you to consider .... 1) Your WS should be deployed to...
View ArticleRe: SyntaxFromSQL
Thanks, it gives me a new idea when I do not specify the schema name :SELECT COLUMN_NAME FROM SYS.ALL_IND_COLUMNS WHERE INDEX_NAME = 'RRX1TPERSONN_PK' AND INDEX_OWNER = 'CM' AND TABLE_OWNER = 'CM'...
View ArticleRe: Toolbar icons get distorted in Win8.1
I changed the old ICOs to monochrome PNGs and now I have another problem! Although I included them inside the .PBR as I did with the .ICO ones, they are not displayed in the EXE The only way is to...
View ArticleRe: Error 'cannot get parameters of procedure dbo.fDepartment when calling...
RPC = Remote PROCEDURE Call. You cannot use this approach to execute user-defined functions. Convert your function to a stored procedure with an output argument if you want to implement this logic in...
View Article