Hi there,
starting an application under NT to process serveral SQL-statement on ORACLE-DB with GUI (just empty Form) it runs about 2 min, witout GUI (Application.ShowMainForm = FALSE) 9 secs.
I'm very happy about the speed up, but what I would like to know : Why ?
Does anybody has an Idea...
Hi,
it depends on the delphiversion youre using. Would you like to use ODBC or Native Driver?
Anyways, an easy way not to use BDE but using a package.
Try this one:
NC OCI8 v.0.9.2 beta under
http://www.delphispirit.com/rd/Database/2/15
regards
Jens
Hi TimSNL,
well, the folling example uses "CreateProcress" (which is more appropriate on a 32bit-platform) to start notepad and waits until you close it:
[CODE]
var
StartupInfo: TStartupInfo;
ProcessInfo: TProcessInformation;
NotepadExe: String;
begin...
Hi TimSNL,
you should use window API "CreateProcess" to run programm.
Then you wait until its finished with "WaitForSingleObject".
Ciao,
Jens
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.