Ask a Question related to Coldfusion Database Access, Design and Development.
-
UpstateWeb #1
Does MS Access have a Show Columns SQL command
I have recently discovered how to Alter Add and Drop columns from MS Access.
This is going to help me a lot with updating multiple databases when I make
changes to my administrative product. Before I was opening each database and
making the changes. Yuck...
What I am running into is some of the tables don't have data in them yet and
so I can't query against them to get a columnlist. Is there a way to get this
with MS Access 2003 on MX 6.? Something like:
<cfquery name="getColumnList" datasource = "#DSN#">
SHOW Columns from Tablename
</cfquery>
<cfoutput>#getColumnList.Columnlist#</cfoutput>
Thanks in advance,
Rock Moore
P.S. And thanks to so many who have helped me over the last 2 weeks. I have
had a time of it upgrading from 4.5 to 6.1. I did not test and plan enough...
UpstateWeb Guest
-
How to Hide & show the columns in ADVANCED DATAGRID.?
HI, Am working with Advanced Datagrid. Problem am facing is.. i want to hide & show the columns in AdvancedDataGridColumnGroup. By default am... -
DropDownList show the name of columns of dataGrid
Hello, I make a dataGrid and i like to show the name of the columns of the dataGrid in a DropDownList. For example, if my dataGrid have three... -
SQL plugin and Show columns query
Hi, I would like to know how can I execute and see the result of "Show Columns From table.name from db.name" using SQL plugin with MySQL... -
can't get data to show with bound columns
I'm trying to create a DataGrid filled with values from a DataSet and I want the user to be able to show and hide whichever columns they choose. I... -
Conditionally show columns in SQL
Almost positive that this is impossible without using dynamic sql! -- Dean Savovic www.teched.hr "Pierre Dippenaar" <pierre@sentinal.co.za>... -
philh #2
Re: Does MS Access have a Show All Tables in a Datasbase
SELECT * from MSysobjects
WHERE Type = 1
AND left([name],4) <> 'MSys'
Provided, of course, that you can get the permission to query the MSysObjects table.
philh Guest



Reply With Quote

