Click here to Skip to main content
16,005,120 members
Home / Discussions / Database
   

Database

 
GeneralRe: unbound RadioButtonList Selected Item problem Pin
amit201123-Oct-08 3:30
amit201123-Oct-08 3:30 
GeneralRe: unbound RadioButtonList Selected Item problem Pin
amit201123-Oct-08 3:48
amit201123-Oct-08 3:48 
GeneralRe: unbound RadioButtonList Selected Item problem Pin
John Gathogo23-Oct-08 2:20
John Gathogo23-Oct-08 2:20 
Questionhow to read returned identity value from stored procedure Pin
Poonam Gandash23-Oct-08 0:08
Poonam Gandash23-Oct-08 0:08 
AnswerRe: how to read returned identity value from stored procedure Pin
Ashfield23-Oct-08 1:26
Ashfield23-Oct-08 1:26 
GeneralRe: how to read returned identity value from stored procedure Pin
Poonam Gandash23-Oct-08 2:20
Poonam Gandash23-Oct-08 2:20 
GeneralRe: how to read returned identity value from stored procedure Pin
Ashfield23-Oct-08 2:36
Ashfield23-Oct-08 2:36 
AnswerRe: how to read returned identity value from stored procedure Pin
Mycroft Holmes23-Oct-08 11:55
professionalMycroft Holmes23-Oct-08 11:55 
GeneralRe: how to read returned identity value from stored procedure Pin
Poonam Gandash23-Oct-08 19:14
Poonam Gandash23-Oct-08 19:14 
GeneralRe: how to read returned identity value from stored procedure Pin
Mycroft Holmes23-Oct-08 19:43
professionalMycroft Holmes23-Oct-08 19:43 
Questioncan't start sql server service manager [modified] Pin
sathyan_829422-Oct-08 23:37
sathyan_829422-Oct-08 23:37 
AnswerRe: can't start sql server service manager Pin
Ashfield22-Oct-08 23:54
Ashfield22-Oct-08 23:54 
QuestionWhat are the various debug visualizers in visual studio ? Pin
lovedotnet22-Oct-08 18:38
lovedotnet22-Oct-08 18:38 
AnswerRe: What are the various debug visualizers in visual studio ? Pin
John Gathogo23-Oct-08 1:53
John Gathogo23-Oct-08 1:53 
QuestionRollback transaction problem Pin
hdtrung22-Oct-08 17:42
hdtrung22-Oct-08 17:42 
AnswerRe: Rollback transaction problem Pin
Mycroft Holmes22-Oct-08 23:44
professionalMycroft Holmes22-Oct-08 23:44 
GeneralRe: Rollback transaction problem Pin
hdtrung23-Oct-08 4:01
hdtrung23-Oct-08 4:01 
GeneralRe: Rollback transaction problem Pin
Mycroft Holmes23-Oct-08 11:51
professionalMycroft Holmes23-Oct-08 11:51 
QuestionProblem with .ldb file Pin
Venumunna22-Oct-08 15:49
Venumunna22-Oct-08 15:49 
I am using 'ADOX.Catalog' namespace and the following code to create a new MS Access database.

Private Function CreateAccessDatabase() As Boolean
'-------------------------------------------------------
'This method is called to create a new Access database
'Required: NewDBConnectionString
'-------------------------------------------------------
Dim ADOXCatalog As New ADOX.Catalog
Try
If Me.NewDBConnectionString.Trim.ToString.Length = 0 Then Throw New Exception("Connection string is not specified")

'Call create method to create a new database
ADOXCatalog.Create(Me.NewDBConnectionString.Trim.T oString)
Return True
Catch ex As Exception
Throw ex
Return False
Finally
If Not ADOXCatalog Is Nothing Then
ADOXCatalog = Nothing
End If
End Try

End Function


The moment it created database, it is also leaving a .ldb file in the same directory. I don't want that .ldb file. If I tried to delete the file forcedly, it is passing an exception "The file is being used....". All the connection strings are properly closed.

Can anyone help me to remove this .ldb file.
AnswerRe: Problem with .ldb file Pin
Wendelius22-Oct-08 17:42
mentorWendelius22-Oct-08 17:42 
QuestionGet the columns name that contains this value in it's first row Pin
Muammar©21-Oct-08 22:39
Muammar©21-Oct-08 22:39 
AnswerRe: Get the columns name that contains this value in it's first row Pin
Ennis Ray Lynch, Jr.22-Oct-08 2:59
Ennis Ray Lynch, Jr.22-Oct-08 2:59 
GeneralRe: Get the columns name that contains this value in it's first row Pin
Muammar©22-Oct-08 3:32
Muammar©22-Oct-08 3:32 
AnswerRe: Get the columns name that contains this value in it's first row Pin
Wendelius22-Oct-08 4:06
mentorWendelius22-Oct-08 4:06 
Questionrounding up issue in sql.... Pin
Sasmi_Office21-Oct-08 21:54
Sasmi_Office21-Oct-08 21:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.