Ask a Question related to ASP Database, Design and Development.
-
michaaal #1
How can I create a table in my Access database dynamically in ASP?
How can I create a table in my Access database dynamically using ASP?
michaaal Guest
-
Selecting one particular field in the same Access database table?
Is there a way of selecting one particular field in the same Access database table? eg. database is - ID: 1 ... -
Insert table - ASP and access database
Hi, I am working towards trying to insert data in to two tables from one form. My code won't work so I have simplified everything. I... -
Could not access/create a database on a NFS mount / Please help to fix that
Hello, I'm using INFORMIX-SE Personal Edition Version 7.25.TC3 on Windows 2000 (NTFS). 1.If I run DB-Access, choose "connect to" server :... -
How can I dynamically create a MS Access database?
On my web server, I want my ASP code to check and see if the file called "SECURITY.MDB" exists and if it doesn't then I want it to dynamically... -
CREATE TABLE IN ACCESS
Hi all, Quick question, how do you create a table in MS Access from with an asp script? I will be creating the table name from ... -
Aaron Bertrand [MVP] #2
Re: How can I create a table in my Access database dynamically in ASP?
set conn = CreateObject("ADODB.Connection")
conn.open "<connection string>"
conn.execute("CREATE TABLE foo(splunge INT)")
Also some examples here
[url]http://www.aspfaq.com/2029[/url]
--
Aaron Bertrand
SQL Server MVP
[url]http://www.aspfaq.com/[/url]
"michaaal" <res0gyio@verizon.net> wrote in message
news:elj1XQI5DHA.2776@TK2MSFTNGP09.phx.gbl...> How can I create a table in my Access database dynamically using ASP?
>
>
Aaron Bertrand [MVP] Guest
-
Bullschmidt #3
Re: How can I create a table in my Access database dynamically in ASP?
[url]http://www.aspmessageboard.com/forum/databases.asp?M=251953&F=21&P=1[/url]
Best regards,
J. Paul Schmidt, Freelance ASP Web Developer
[url]http://www.Bullschmidt.com[/url]
ASP Design Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Bullschmidt Guest
-
bharath #4
Re: How can I create a table in my Access database dynamically in ASP?
what is there in creating a table in MS-ACCESS?
Bullschmidt <paul@bullschmidt.com-nospam> wrote in message news:<#X$xmbl6DHA.1664@TK2MSFTNGP11.phx.gbl>...> [url]http://www.aspmessageboard.com/forum/databases.asp?M=251953&F=21&P=1[/url]
>
> Best regards,
> J. Paul Schmidt, Freelance ASP Web Developer
> [url]http://www.Bullschmidt.com[/url]
> ASP Design Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...
>
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
> Don't just participate in USENET...get rewarded for it!bharath Guest
-
Aaron Bertrand [MVP] #5
Re: How can I create a table in my Access database dynamically in ASP?
> what is there in creating a table in MS-ACCESS?
Could you rephrase the question?
Aaron Bertrand [MVP] Guest



Reply With Quote

