Ask a Question related to Coldfusion Database Access, Design and Development.
-
zac1234 #1
tables - access db
i'm using coldfusion with an access db. i currently have two tables in my db
which i am able to query no probs. i now wnat to add a third table but for some
reason its not displaying in the "application / database / tables" panel in
dreamweaver, therefore i can not connect/query it.
ive tried verifying the db via coldfusion control panel
ive tried refreshing
ive tried restarting
ive tried deleting and recreating
please elp !!!
zac1234 Guest
-
Access Tables without having a Server??
Hello, I have a Java-Application that works with a MYSQL Server on a central Computer through the MYSQL-jdbc driver. Now I have the problem... -
Two tables in MS access
Hi I have 2 tables in MS acess for my web application tdldecedent and tblcircumstances with common field name Case number. When the user will log... -
access tables
:confused; we are doing a database driven website using dreamweaver and microsoft access as the database. everything works fine until we create an... -
list tables from Access 2000
What is the output variable? Who do you give read permissions to? Why would this need more permissons that a script that actually makes tables?... -
readonly access on tables
Hi, We have a SQL server database on remote server. We are using ODBC connection to read and write into the table. But we have another user wants... -
Dan Bracuk #2
Re: tables - access db
Have you tried a cfquery tag in code view of dw?
Dan Bracuk Guest
-
zac1234 #3
Re: tables - access db
yes i tried this. i tried just ignoring the fact that it wasnt listed in the
applications panel and hand coded but ij just throws up an error when tested.
its almost as if the table hasnt been created....
zac1234 Guest
-
Dan Bracuk #4
Re: tables - access db
When you said you tried deleting and re-creating were you referring to the table or datasource? If table, try datasource.
Dan Bracuk Guest
-
zac1234 #5
Re: tables - access db
yes tried deleting and then reinstating the datasource but still no joy. just ct understand it, ive triple checked everything .... i think!
zac1234 Guest
-
paross1 #6
Re: tables - access db
How did you create this table? Did you actually go into Access and create it and/or have you actually gone into Access and verified that the table exists?
Phil
paross1 Guest
-
zac1234 #7
Re: tables - access db
yes correct, i simply opened up acccess, then opened up my db and created a
table the same way i did with the other two and when i go back into access the
table doe exist ok and doesnt give any indication that there might be something
wrong/different about it.
zac1234 Guest
-
Jochem van Dieten **AdobeCommunityExpert** #8
Re: tables - access db
zac1234 wrote:
Try creating the table from inside CF using a query:> i'm using coldfusion with an access db. i currently have two tables in my db
> which i am able to query no probs. i now wnat to add a third table but for some
> reason its not displaying in the "application / database / tables" panel in
> dreamweaver, therefore i can not connect/query it.
<cfquery datasource="...">
CREATE TABLE tablename (
ID INTEGER,
name varchar(25)
etc.
)
</cfquery>
Jochem
--
Jochem van Dieten
Adobe Community Expert for ColdFusion
Jochem van Dieten **AdobeCommunityExpert** Guest
-
jdeline #9
Re: tables - access db
Have you looked at the database with the Access application? Is the table
really there? Access will create a .ldb file that locks updates out certain
things you can do with the .mdb file.
Is the database on a remote server or on your local machine?
jdeline Guest
-
elDonrico #10
Re: tables - access db
i'm thinking you are looking at the wrong database. do you have access to the
server the db is on? if so, check your cf administrator to make sure you are
referring to the db on that server... then open up the db from that server. i
think you are using some local copy or something. if its a standard table in
access that you have a dsn set up for, you should have no problems.
elDonrico Guest
-
elDonrico #11
Re: tables - access db
and when i say access to the server i mean do you have the ability to go to the server other than ftp? not access the program (man, what a stupid name to call a program)
elDonrico Guest



Reply With Quote

