Wasn't the fallowing code creates a phisically visible table...???

VB Code:
  1. Set d = w.OpenDatabase("C:\Documents and Settings\Administrator\Desktop\db11.mdb")
  2. Set rst = d.OpenRecordset("query1")
  3.     rst.MoveFirst
  4.     While Not rst.EOF
  5.         Set t = d.CreateTableDef(rst(0))
  6.         With t
  7.             .Fields.Append .CreateField("srikanth", dbText)
  8.         End With
  9.         rst.MoveNext
  10.         Set t = Nothing
  11.     Wend

then y iam uanble to see how is my tables looks like...the code was running with out any error....please help in this issue.....its a bit urgent..pleasee..