Recent content by mobermaier

  1. M

    Unable to connect from DLL

    I'm still having this problem. Any idea how to identify the actual issue? I have this very simple apache module, Delphi XE6, DOA 4.1.3.5, OHS 12.2.1.3: Create a webbroker apache module: library mod_webbroker; uses Winapi.ActiveX, System.Win.ComObj, Web.WebBroker, Web.ApacheApp...
  2. M

    Unable to connect from DLL

    Tried that, that works fine. Apache mod / DLL and test program 64Bit, Delphi XE6 DOA 4.1.3.5, Apache/OHS is running as local system account, the exe with my local administrator account. "Forcing" a different OCI dll works with the test executable as well. Does not work with OHS, guess the OCI...
  3. M

    Unable to connect from DLL

    We're having a similar issue connecting from an Apache module loaded into Apache 2.4 (OHS 12.2.1.3) running on Windows 2012. On the first connect attempt I'm getting: Access violation at address 00007FFC88515014 in module 'oraclient12.dll'. Write of address 0000000000000018
  4. M

    TLobLocator.AsWideString D7 / D2009 not storing same value in DB

    This is fixed in 4.1.2 (Delphi 2009) but not in 4.1.1 D7. The problem is in TLobLocator.Write() D7 4.1.1 function TLOBLocator.Write(const Buffer; Count: Longint): Longint; var CharCount: LongInt; begin if Count > 0 then begin if MonitorPresent then SendStartActivity('LOB.Write(' +...
  5. M

    TLobLocator.AsWideString D7 / D2009 not storing same value in DB

    D7 Debugging / Evaluate sLobContent (WideString) sLobContent := slFile.Text; '/^/ version='5.0.02.01' ; shell_name='TEST76' /**/'#$D#$A'/^/insert into TC$_GROUPS FORABlob.AsWideString := sLobContent; sLobContent := FORABlob.AsWideString; '/'#0'^'#0'/'#0'...
  6. M

    TLobLocator.AsWideString D7 / D2009 not storing same value in DB

    Yes, it is. Could it be Preferences ConvertUTF (that is currently set to cuNone)? BytesPerCharacter is the only non default value (bcAutoDetect).
  7. M

    TLobLocator.AsWideString D7 / D2009 not storing same value in DB

    I have a 10.2.04 Oracle UTF DB, and I try to write some Unicode data to a clob. Compiled with D2009 the clob content looks ok, using D7 (and TMS Unicode Controls) the clob content is wrong. ==== snip ==== {$IFDEF VER150} var slFile: TTNTStringList; {$ENDIF} {$IFDEF VER200} var slFile: TStrings...
  8. M

    Scrollable Query, First, Last and ReadBuffer

    I just tried the following and was a little confused/surprised by the result: FQuery.Scrollable := True; FQuery.ReadBuffer := 10; FQuery.Execute; FQuery.Last; iRows := FQuery.RowCount; // Result is 202 if not FQuery.EOF then begin FQuery.First; while not...
  9. M

    CLOB size limit !

    I have a table with 5 clob columns (see below), when I load data into those clobs and try to run the following command select * from OPERA_SHELL or (all columns specified) select name, version, upload_date, sys_lob, cro_lob, chn_lob, prp_lob, rep_lob from OPERA_SHELL PL-SQL Developer crashes...
  10. M

    TOracleScript commented semicolon

    TOrcaleScript seems to have problem with commented semicolons: CREATE OR REPLACE FORCE VIEW tmp_daily ( resort, resv_name_id, from_resv_id ) AS -- this is a comment that breaks TOracleScript; -- only when ; is last non-blank char in line SELECT 'Resort' , 'Resort1', '1' FROM DUAL...
Back
Top