Recent content by MRhoades

  1. M

    DOA in Windows Service

    When you are writing a service for Windows NT/2000/XP you can create forms and put usefull information in it. Just make sure no user interaction is required. You will never see the forms unless you click the box to interact with the desktop. I have found this to be helpfull on fixing problems...
  2. M

    Default NULL value for fields

    I do create a new dataset. But the information seems to still be cached. Here is my sample code: // Table Test = create table TEST (f1 number not null default 0, f2 number not null default 0, f3 number not null default 0); AnsiString Table = "TEST"; // Rename the existing table...
  3. M

    Default NULL value for fields

    I am having a simular problem. I rename a table and create a new table (same name) with more fields. IE: I have a table created as: create table TEST (f1 number not null default 0, f2 number not null default 0, f3 number not null default 0); alter table TEST rename to TEST_OLD; create table...
Back
Top