Search results for query: *

  1. D

    Isolationlevel - how to set ?

    How do I set the IsolationLevel of an oledb.olebdconnection ? please don't refer me to documentations, I've read them all. I need a code example. I'm using MS-ACCESS. Thanks.
  2. D

    change column size run time

    I want to change a column in MS-ACCESS from char(22) to char(100) through code. I tried "ALTER TABLE <table name> MODIFY <column-name> char(100)" like ansi-SQL defines. Didn't work. Not through code and not even through MS-ACCESS itself. Ideas ?
  3. D

    Append column in run time

    Hi, As a result of version enhancments, I need to perform an upgrade to existing access DB. This upgrade involves adding a new column to an existing table. Tried ADOX and ADO.NET with no success ... Anyone knows how to do it ? Thanks, Doron.
  4. D

    Create Queries

    How do I create Queries from code ?
  5. D

    GEtType return Nothing

    Any idea why System.Type.GetType("System.Int32") returns nothing ? ANY type I use acts the same. I took samples from everywhere in the glob. Always ending getting null .
  6. D

    All I want is to create a table that's it ...

    ADOX enum ain't working Why can't I define adBig Int or other types when creating a table ??? adInteger works .. I get invalid type ... Dim ADOXtable As New ADOX.Table 'name table, append fields to table ADOXtable.Name = "bla" ADOXtable.Columns.Append("sort"...
Back
Top