Yes, I know that. It's not what I ment. Full screen view is when the edition area (Program Window) covers the whole of the screen. Menues, status bars, etc. (possibly also the title bar) is then hidden, and the editing area makes use of the whole monitor area. Check e.g. MSWord: meny...
Hi All
Now that Borland more or less has killed of Kylix, an free ObjectPascal alternative is a very welcome newcomer. I have just discovered a project called Lazarus (Kylix raised from the dead???). This seems to be a rather adequate alternative to at least the lower end of Kylix.
I assume...
I really miss the possibility to run various windows in a "Full Screen View". Something like "View->Full Screen" in e.g. TextPAD. This could be very useful for most window types, but I particulary miss this when it comes to program windows.
:) Roald Andresen
Case solved.
The Help->About->Info showed me the problem.
For some reason, an older oci.dll had found its way into my c:\windows directory, and thus was picked up by pl/sql dev as default.
Deleting that caused the correct dll to be pick up, and everything works just fine.
:-)Roald
Thanks Marco.
I have upgraded DOA, and my appl works fine.
I have also upgraded PL/SQL Dev. til 5.1.6.747, but there I still get the same error.
This should probably be in the PL/SQL forum now, but...
;) Roald
I have just upgraded both my oracle client and server from 9.2.0.4 to 10GR1.
Both my applications and PL/SQL Dev. fails with the following error:
"A Query with LOB's requires OCI8 mode, but OCI7 mode is used."
In my app. TOracleSession.Preferences.UseOCI7 is set to false.
DOA version: 4.0.3...
Using ShowMessage also give me a correct answer. However, I didn't get anything through the debugger. That is more likely Borland's problem.
Sorry about the inconvenience.
:-o Roald
Hi
Could someone provide me with a more complete example on how I use OracleCI to query/parse tnsnames.ora?
I keep getting an empty list from OracleCI.OracleAliasList.
:-)Roald
I'll check out the Oracle bug. I have also found a report on Metalink giving me some points to check out. However, it might take a couple of days before I have the time. I'll get back with the results then.
:-)Roald
I have a table definition looking like this:
create or replace type T2 as object
(
C2 varchar2(30),
N2 number
);
create or replace type T1 as object
(
C1 varchar2(10),
N1 number,
O1 T2
);
create table testtab of T1;
Furthermore, I have a TOracleDataSet object DS with sql:
"select...