Does anybody know what the string limitations are for the Database functions?
What I really need to know is the maximum string allowed for DatabaseQuery() and GetDatabaseString()
Thanks.
Database String Limitations
Just to save you some time :
Code: Select all
Procedure SetStringManipulationBufferSize(size); - Set the String-Buffer-Size
PBStringBase.l = 0
PBMemoryBase.l = 0
!MOV eax, dword [PB_StringBase]
!MOV [esp+4],eax
!MOV eax, dword [PB_MemoryBase]
!MOV [esp+8],eax
HeapReAlloc_(PBMemoryBase, #GMEM_ZEROINIT, PBStringBase, size)
!MOV dword [_PB_StringBase],eax
EndProcedure -Mitchell
Check out kBilling for all your billing software needs!
http://www.k-billing.com
Code Signing / Authenticode Certificates (Get rid of those Unknown Publisher warnings!)
http://codesigning.ksoftware.net
Check out kBilling for all your billing software needs!
http://www.k-billing.com
Code Signing / Authenticode Certificates (Get rid of those Unknown Publisher warnings!)
http://codesigning.ksoftware.net


