-
as seen on Stack Overflow
- Search for 'Stack Overflow'
After a lot of experimentations, I found a way to exchange PChar from a FreePascal compiled DLL with a Delphi compiled EXE. I'm in charge of both the DLL and EXE source code but one MUST BE in FreePascal and the other one in Delphi. My solution involves the following methods in the DLL:
function…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I was speeding up my app by using compiled queries for queries which were getting hit over and over.
I tried to implement it like this:
Function Select(ByVal fk_id As Integer) As List(SomeEntity)
Using db As New DataContext()
db.ObjectTrackingEnabled = False
Return CompiledSelect(db…
>>> More
-
as seen on Oracle Blogs
- Search for 'Oracle Blogs'
We have got some questions related to exceptions thrown during a map serialization like the following one (in this example, for a LRUMap):
java.util.ConcurrentModificationExceptionat org.apache.commons.collections.SequencedHashMap$OrderedIterator.next(Unknown Source)at org.apache.commons.collections…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
After upgrading PHP from 5.1x to 5.2.10, there are a lot of warning when php -v:
[root@localhost ~]# php -v
PHP Warning: PHP Startup: fileinfo: Unable to initialize module
Module compiled with module API=20050922, debug=0, thread-safety=0
PHP compiled with module API=20060613, debug=0, thread-safety=0
These…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I am novice to rapidXML but first impresion was not positive, I made simple Visual Studio 6 C++ Hello World Application and added RapidXML hpp files to project and in main.cpp I put:
#include "stdafx.h"
#include < iostream >
#include < string >
#include "rapidxml.hpp"
using namespace…
>>> More