Recent content by nisbus

  1. N

    TOracleScript

    Sorry, I'm an idiot. I needed to change the code to this: OracleScript1.Session := O_Session; OracleScript1.Lines.Clear; OracleScript1.Lines := s; OracleScript1.Execute; where s is a TStringList. now it works perfectly
  2. N

    TOracleScript

    Hi, I'm trying to use the TOracleScript component to create a table at runtime: ORA_Script := TOracleScript.Create(Self); ORA_Script.Session := O_Session; ORA_Script.Lines.Clear; ORA_Script.Lines.Add(CreateTableString); ORA_Script.Execute; I've tried copying the...
  3. N

    Run time vs. Design time

    Hello Marco, I've managed to solve the problem for now. I created a new project and copied all of the code from the old project. It connected nicely and everything was working. I then went to refill my coffee and when I came back I had the same error again. I then created the third project and...
  4. N

    Run time vs. Design time

    What do you mean by Oracle > Preferences? There is no Oracle menu in Delphi. I haven't done anything as far as settings go besides just installing the software (I'm setting up a clean computer). Please elaborate. nisbus
  5. N

    Run time vs. Design time

    Hi, I'm having a strange problem with the TOracleSession component. I set username/password and database in the Object inspector of my Delphi 2005 and change the connected property to true. Everything works smoothly. Then I compile and run my project and at the startup I get the error...
Back
Top