Re: PB sets identity column in datawindow when it should not
Thanks for the additional info. I will include it and also get it into an SAP KBA so others can find it. My initial DW back then was with ODBC and SQL Anywhere and I reproduced the bug using SQL...
View ArticleConversion failed when converting date and/or time from character string.
My PB 10.5 app is connecting to a Microsoft SQL Azure cloud database via ODBC. I am getting the following error: [Microsoft][SQL Server Native Client 11.0][SQL Server]Conversion failed when converting...
View ArticleRe: Conversion failed when converting date and/or time from character string.
I know that wasn't really the question, but I tend work around. You could pass it a string and convert explicitly: ls_filedate = string ( ldt_filedate , 'yyyy-mm-dd hh:mm:ss' ) UPDATE .......
View ArticleRe: .Net classes with no CREATE function
In SyBooks Online (Archive) you can find this: Exception for platform-specific primitive types The System.IntPtr and SystemUIntPtr primitive types do not have precise corresponding types in...
View ArticleRe: Conversion failed when converting date and/or time from character string.
Eventually you can set PBDateTimeFmt via pbodbcxxx.ini or in some connection options.
View ArticleRe: PB 12.5 .net application as windows service
Hi Brad; Prasad already mentioned that product in his original post. Also, he is asking about creating a Service in PB.Net not PB Classic. Regards .. Chris
View ArticleRe: PB12.5 application problems with Windows 8
PB versions 12.5/6 only support the SS2010 db drivers. So you will have to make sure that you install the SS2010 32 bit client for any connectivity to SS2012 to work. The SNC10 version should work...
View ArticleRe: Conversion failed when converting date and/or time from character string.
I don't think the conversion to string is necessary.Just tell SQL Server to convert the value to a datetime. update......FILEDATE = convert(datetime, :ldt_filedate)
View ArticleRe: PB 12.5 .net application as windows service
I guess it would help if I read the post properly... I would refer to this then: https://msdn.microsoft.com/en-us/library/76477d2t(v=vs.110).aspx You would need to inherit a new nvo from...
View ArticleRe: Conversion failed when converting date and/or time from character string.
I tried modifying the pbodbc105.ini and it worked. I then tried using the DateTime dbparm and that works as well using the following value from the ini file: Constant String PBDateTimeFmt =...
View ArticleRe: Conversion failed when converting date and/or time from character string.
The curly braces and the "ts" are needed since they are part of the odbc escape syntax. It should work with any dbms that supports this syntax, though you should be aware of the limitation you are...
View ArticleRe: PB 12.6 in production?
Hi; There is big problem right now with PB 12.6 if you use external function calls and pass in a structure. PB 12.6 aligns your structure items (elements) on machine Word (4 byte) boundaries. So if...
View ArticleRe: PB 12.6 in production?
Yes, I believe there is! From what I have heard, SAP Engineering is looking at the problem.
View ArticleRe: PB 12.6 in production?
Hello Andreas, I think Chris is thinking of this thread: http://scn.sap.com/thread/3680653 HTH,Jacob
View ArticleRe: PB 12.6 issue: passing structure to external C++ function
Hi Pat; That is not a fix its a "kluge" workaround that can not support both. I can see where a PB application is calling older 3rd party DLL's and new ones where the alignment could be a mixed bag....
View ArticleRe: PB 12.6 in production?
Also ... 1) Numerous issues logged in this forum for 64 bit compilation & execution.2) Stability problems with the new Dockable Window feature. Note1: For the PFC ( PFC - Home ) - it only has the...
View ArticleRe: PB 12.6 in production?
We'll be releasing one of our migrated applications in spring. We had to abort the migration of another due to issues with Crystal Reports. SAP gave us a work around which we'll be using for a later...
View ArticleRe: Unexpected Disconnection from Oracle and MySQL
Is this 'heartbeat' anything specific? Or is it just any communication with the DB?
View Article