Transaction autocommit and stored procedure
I have a SP to create data for a report. Datawindow get data from this SP. PB transaction autocommit=false when DW retrieves data by SP. It's is fine. then I want code in SP to insert data like: begin...
View ArticleRe: Transaction autocommit and stored procedure
See SyBooks Online regarding autocommit. When to specify AutoCommitIn the development environment, you must set AutoCommit before connecting to the database. AutoCommit takes effect only when the...
View ArticleRe: Inheriting from .NET classes
It looks like the toolkit is for 3.5. I read this from the WPFToolkit download page... "Please note: The WPF Toolkit is dependent on .NET Framework 3.5 SP1. You must install .NET Framework 3.5 SP1 in...
View ArticleRe: Transaction autocommit and stored procedure
Hi Kent, If you're using oracle you can make the Stored Procedure a Pragma Autonomous Transaction, that way you'll be able to INSERT and COMMIT independently from the original transaction issued from...
View ArticleRe: Web Service on Network drive
Hi Pedro, Just a guess but I suspect your web service is running from a local service account in IIS like NETWORK SERVICE, IIS_USRS or something like that and doesn't have access to network drives but...
View ArticleRe: Web Service on Network drive
Hi Mark,First, thanks for answer. The IIS user has access to the network drive. I think this problem isn't related to user permission because the WS was instaled in C:\inetpub\wwwroot\. When I deploy...
View ArticleRe: Accessing nested report's data
Looks like there's no simple solution. Some options you could do:1. Manually do a Select to verify if the nested report got some rows to retrieve i.e. select count(*) from table1 where <your...
View ArticleRe: Accessing nested report's data
Why not have datastore with the same dataobject as the nested report. Loop through the base report rows to obtain arguments and retrieve the datastore one base row at a time.
View ArticleRe: Digitally signed excel file.
Dear Bruce, Thank you for your answer. For your ease I attached the screen shot of digital signature.That I want to create using powerbuilder classic code. I am unable to see the youtube link for my...
View ArticleRe: Web Service on Network drive
Hi Pedro; The problem is that you can not access files outside the WS's "virtual path" local work area - which would be, for...
View ArticleRe: Web Service on Network drive
Thanks Chris! Sorry, but is a private or public framework? If is public where can I dowload it? Regards,Pedro Soares
View ArticleRe: Web Service on Network drive
Great! This is a very interesting framework! Thank you very much! Regards ... Pedro
View ArticleRe: PB.NET - DW initial column values are lost!
Hi Arcady, Quick update: SAP KBA 2036168 was just released:http://service.sap.com/sap/support/notes/2036168 ThanksJacob
View ArticleRe: Digitally signed excel file.
The GUID is the ID of the signature provider. See the following: SignatureSet.AddNonVisibleSignature Method As for the error you are getting, you'll have to do some debugging. Did the...
View ArticleWhich dll is required to run powerbuilder exe with sqlserver snc connection
Hi,Please can you let me know which DLL is required to be copied to run application exe in a stand alone machine . Please can you let me knowWith Kind RegardsPol
View ArticleRe: Which dll is required to run powerbuilder exe with sqlserver snc connection
Hi Polachan; The DB interface driver is named PBSNCnnn.dll (where nnn = PB release - ie: 120 or 125, etc). You should find this file located in the PB IDE's installation "Shared\PowerBuilder"...
View ArticleRe: Transaction autocommit and stored procedure
Hi Manuel, I am using sybase ASE, not Oracle. but the thing is exactly as you said, want to transaction in sp independently from the one from app.
View ArticleRe: Transaction autocommit and stored procedure
This sounds a bit strange. Commit is supposed to commit transactions in the transaction log and free up resources. As I understand, commit is not dependent on the autocommit setting. When you issue...
View ArticleRe: Transaction autocommit and stored procedure
Hi Kent; You have a few choices (AFAIK) with ASE... 1) AutoCommit = TRUE - must be before connect to your DB 2) End your PB transaction first. For example String ls_end = "END...
View ArticleGenerating a setup file for a webservice
Hi , Iam just wondering : why always there is no sufficient resources when it comes to Powerbuilder & .Net/Web For my case I've created a simple web service to retrieve some data , it works well on...
View Article