Re: TADOTable problem



paul mayer wrote:

>
> > When this error happens do you see any references to yours code in
> > call stack?
>
> Nothing much on the call stack. This code is executed on form create,
> and all I am doing is:
> ADOConnection.Open;
> ADOTable.Active := True;
>
> Where the connectionstring is fine. The error makes me think that the
> ADOTable component doesnt like this particular access table. I have
> access 2003 with sp3. I dont want to have to use TTable instead but I
> am lost here as to what is the problem
>
> Paul

does this happen outside the IDE?

--
Best regards :)

Guillem Vicens Meier
Dep. Informatica Green Service S.A.
www.clubgreenoasis.com
--
Contribute to the Indy Docs project: http://docs.indyproject.org
--
In order to contact me remove the -nospam

.



Relevant Pages

  • Re: mex-file and reference
    ... Since my program uses a big structure defined in C to handle every meaningful variables, I thinks it is why references are used. ... "A pointer has its own memory address and size on the stack, whereas a reference shares the same memory address but also takes up some space on the stack. ... Heap access is NOT slower than stack ... However, once allocation is done, accessing both heap and stack ...
    (comp.soft-sys.matlab)
  • Re: Nulling an object
    ... Stack itself is sufficient for releasing all the objects that the ... The issue witrh stacks is that a naive implementation retains unnecessary references to objects. ... assuming decent optimizations, push does a pointer bump and a couple of assignments to an object header for "new Entry", and three more pointer assignments, some stack pushes, and some stack pops. ... The other implementation used one push and one pop, an integer addition, an integer comparison and conditional branch, a pointer addition and a pointer dereference and a pointer assignment. ...
    (comp.lang.java.programmer)
  • Re: arrays = pointers?
    ... program variable, and this variable can actually exist in a register, on the stack, in the ... aliveness state of the variables holding object references at JIT compile time. ... All the GC has to do is inspect the GCInfo table and start walking the stackand the ... in the stack and the handle table. ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: Crash observed with object on stack but not on heap
    ... Chances are you create this object on a thread's stack (or attached to ... required objecton a central list, and when the thread exits it ... references those objects does so by retaining a const void* or integer ...
    (comp.os.linux.development.apps)
  • Re: scope and RAII
    ... stack is popped. ... Class variables and Constants are similarly associated with a Class ... and Globals are kept in a global registry. ... following chains of variable references starting with either variables ...
    (comp.lang.ruby)