Re: programmatically create an Access Datasource

2007-02-06 Thread Ken Wexel
You got it! On 2/6/07, Jonathon S <[EMAIL PROTECTED]> wrote: > Huh -- never knew about that functionality! Taking a > stab here -- if I wanted my own CFC's to do this same > thing I'd be filling out those "hint" and > "description" attributes that I've been skipping over? > > Jonathon > > > > ---

Re: programmatically create an Access Datasource

2007-02-06 Thread Jonathon S
Huh -- never knew about that functionality! Taking a stab here -- if I wanted my own CFC's to do this same thing I'd be filling out those "hint" and "description" attributes that I've been skipping over? Jonathon --- Ken Wexel <[EMAIL PROTECTED]> wrote: > ColdFusion Components (CFCs) are > se

Re: programmatically create an Access Datasource

2007-02-05 Thread Ken Wexel
ColdFusion Components (CFCs) are self-describing...that is, you can view the methods they expose, parameters they require, etc. via a web browser interface, using functionality built into CF. For example, to view the CF Admin API CFC, browse to: http://YOURSERVER/cfide/adminapi/administrator.cfc

Re: programmatically create an Access Datasource

2007-02-05 Thread Jonathon S
I'm not familiar with that -- CFC Browser? Jonathon --- Ken Wexel <[EMAIL PROTECTED]> wrote: > You can still browse them to see their methods, > properties, etc. using > the CFC browser. I've used the admin api set pretty > heavily - they > are very very handy! > _

Re: programmatically create an Access Datasource

2007-02-05 Thread Ken Wexel
hat. > > Jonathon > > --- "Leitch, Oblio" <[EMAIL PROTECTED]> > wrote: > > > I think they're all encrypted... > > > > > > -Original Message- > > From: Jonathon S [mailto:[EMAIL PROTECTED] > > Sent: Monday, February

RE: programmatically create an Access Datasource

2007-02-05 Thread Jonathon S
2:17 PM > To: CF-Talk > Subject: Re: programmatically create an Access > Datasource > > I had not thought about that! I am running CFMX7 > though, so I guess I > do have that option. > > Thanks! > > Jonathon ___

RE: programmatically create an Access Datasource

2007-02-05 Thread Leitch, Oblio
I think they're all encrypted... -Original Message- From: Jonathon S [mailto:[EMAIL PROTECTED] Sent: Monday, February 05, 2007 2:17 PM To: CF-Talk Subject: Re: programmatically create an Access Datasource I had not thought about that! I am running CFMX7 though, so I guess I do

Re: programmatically create an Access Datasource

2007-02-05 Thread Jonathon S
I had not thought about that! I am running CFMX7 though, so I guess I do have that option. Thanks! Jonathon --- Steve Milburn <[EMAIL PROTECTED]> wrote: > Have you looked at the new Administrator API? It > should do everything > you need regarding adding, deleting, and modifying > datasource

Re: programmatically create an Access Datasource

2007-02-03 Thread Steve Milburn
Have you looked at the new Administrator API? It should do everything you need regarding adding, deleting, and modifying datasources. Specifically, look at the datasource.cfc component. I dont know what version of CF your running, but it is only available in CF 7. The components are located

Re: programmatically create an Access Datasource

2007-02-03 Thread Jonathon S
Thanks! I just got a similar version of what you're talking about running -- though I was hoping to find a way to do it without locking anything. I can live with the lock though: Sounds similar to what you suggested. At least I know I'm not missing some rea

Re: programmatically create an Access Datasource

2007-02-03 Thread Pete Ruckelshaus
I had a similar (well, sort of) problem that I needed to overcome. Create an Access DSN, something like sampleDbDSN. You'll need to have a "copy" of the database in that location. This file will reside in a fixed location, i.e. c:\inetpub\wwwroot\myapp\data\sampledb.mdb This will be the "target

programmatically create an Access Datasource

2007-02-03 Thread not me
Hi all! I've got a basic DB with a Samples table in it to track a bunch of... Samples :)... for each of our Clients. Setup looks something like this: Samples sampleID [PK] clientID [FK] otherFields "The boss" has requested that each Client be able to download their Samples in an Acces