Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Software > ADO Data > ADOX not deleti...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 1 of 8 Topic 4227 of 4320
Post > Topic >>

ADOX not deleting on first attempt

by Bernard <bernard.herrok@[EMAIL PROTECTED] > May 8, 2008 at 06:14 AM

Hi group,

I'm trying to delete some tables (in my test case all tables) using
adox.

Problem is, it takes a couple of "runs" to delete all the table.
Is there a reason for this? Is there any dependencies that does not
allow the table to be deleted and if so, why don't I get an error
(even when I check ADODB.Connection.Error)?

This seems to be happening with views also.

Here's the code:

 Dim catalog As ADOX.catalog
Set catalog = New ADOX.catalog

Dim table As ADOX.table
Dim tableNode As IXMLDOMNode

Dim index As ADOX.index
Dim deleteCount As Integer

' Set active ADO Connection
catalog.ActiveConnection = g_cn

'Do
    'deleteCount = 0
    For Each table In catalog.Tables
        ' Don't try to delete views or system tables
        If StrComp(table.Type, "TABLE", vbTextCompare) = 0 Then
            ' Drop the table
            catalog.Tables.Delete table.Name
            'deleteCount = deleteCount + 1
        End If
    Next
'Loop While deleteCount > 0
 




 8 Posts in Topic:
ADOX not deleting on first attempt
Bernard <bernard.herro  2008-05-08 06:14:28 
Re: ADOX not deleting on first attempt
"Stephen Howe"   2008-05-08 14:38:59 
Re: ADOX not deleting on first attempt
"Bob Barrows [MVP]&q  2008-05-08 09:46:20 
Re: ADOX not deleting on first attempt
Bernard <bernard.herro  2008-05-08 23:45:24 
Re: ADOX not deleting on first attempt
Bernard <bernard.herro  2008-05-08 23:49:21 
Re: ADOX not deleting on first attempt
"Bob Barrows [MVP]&q  2008-05-09 06:08:11 
Re: ADOX not deleting on first attempt
Bernard <bernard.herro  2008-05-08 23:49:42 
Re: ADOX not deleting on first attempt
Bernard <bernard.herro  2008-05-13 01:58:21 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sat Nov 22 15:23:29 CST 2008.