Print Page | Close Window

DB Admin ?!?

Printed From: Web Wiz Forums
Category: General Discussion
Forum Name: General Discussion
Forum Description: General discussion and chat on any topic.
URL: https://forums.webwiz.net/forum_posts.asp?TID=11389
Printed Date: 01 April 2026 at 2:40am
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: DB Admin ?!?
Posted By: neotrix
Subject: DB Admin ?!?
Date Posted: 02 August 2004 at 9:58am

Hello,

I know there is, but dont know whhere...  there is a programe, i think its known as 'Db Admin' its an ASP Script, it can create MS Acces Datbases.. Tables in them... like it acts as a complete Full MS Access Datbase

I tried searching it but i couldent find it

dose any one know of such programe ?!?



-------------
http://www.muhammadbinyusrat.com/blog/" rel="nofollow - Say to the believing men..



Replies:
Posted By: dpyers
Date Posted: 02 August 2004 at 10:54am
1DBManager? - http://www.comersus.com/1dbManager.asp - http://www.comersus.com/1dbManager.asp

-------------

Lead me not into temptation... I know the short cut, follow me.


Posted By: neotrix
Date Posted: 04 August 2004 at 3:56am

noo

its something else

created by somecompnay works



-------------
http://www.muhammadbinyusrat.com/blog/" rel="nofollow - Say to the believing men..


Posted By: Semikolon
Date Posted: 04 August 2004 at 8:27am
looks lie it's exactly what you need (havn't tried it though), exept for you can't create databases.. bu that can't be a problem.. just use a database you already have and rename it and delete all the tables


Posted By: the boss
Date Posted: 04 August 2004 at 10:14am
no program actually creates the database.. it has a copy of empty acces database as a template and it just create its copy and u manipulate it the way u want!!

-------------
http://www.web2messenger.com/theboss">


Posted By: michael
Date Posted: 04 August 2004 at 5:55pm

Sure you can. Piece of cake. Now the code below is .net but you can do the same in asp

Public Function CreateAccessDatabase( _
    ByVal DatabaseFullPath As String) As Boolean
        Dim bAns As Boolean
        Dim cat As New ADOX.Catalog()
        Try

             Dim sCreateString As String
             sCreateString = _
               "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _
                DatabaseFullPath
             cat.Create(sCreateString)

             bAns = True

        Catch Excep As System.Runtime.InteropServices.COMException
             bAns = False
        Finally
             cat = Nothing
        End Try
        Return bAns
    End Function



-------------
http://baumannphoto.com" rel="nofollow - Blog | http://mpgtracker.com" rel="nofollow - MPG Tracker



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net