[cfaussie] RDS error on w2k CFMX 7 scanning the floppy drive

2007-05-02 Thread Zac Spitzer
Anyone know how to stop the RDS scanning the floppy disk drive? I've googled around and haven't found any help i hit the same error when i try to browse the server to add a mapping z -- Zac Spitzer +61 405 847 168 --~--~-~--~~~---~--~~ You received this messag

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread AJ Mercer
I meant special in that they are subversion folders and are different form the folders I added from my project. But this does not seem to be the case. I am reading Ned Batchelder's quick start blog on branching right now :-) I also have the subversion manual sitting right beside me too - it's page

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread Andrew Scott
There is something special, but you can do that from within eclipse. For example, you made your version go into production. You can then Tag the version by team->Branch/Tag. Then use switch at any time to make changes, but remember that this makes changes to that branch. Tags are used for r

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread AJ Mercer
OK - doing that now I thought there was something special about trunk/branch/tag folders that had to be created by snv - I was using Tortoise to create them Looks like it is loading now :-) Thank you. On 5/3/07, Andrew Scott <[EMAIL PROTECTED]> wrote: > > Each project should have its own trunk

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread Andrew Scott
Each project should have its own trunk, branches and tags folder. So when you create a project in SVN keep this in mind. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 From: cfaussie@googlegroups.com [mailto:[

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread Andrew Scott
AJ, First of all if you have manually set up your SVN then you may have done it wrong. Each Project you use in Eclipse can be done like what you want. First of all ignore setting things up in SVN and let eclipse do the work for you. For example repository /RepositoryRoot Now when y

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread AJ Mercer
Doh! Folder trunk/ already exisits in repository You must specify a folder name that does not already exist On 5/3/07, AJ Mercer <[EMAIL PROTECTED]> wrote: > > Actually, cancel that > > I clicked on browse which brought up a dialog with my repository - I > clicked trunk > It came back with trunk

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread AJ Mercer
Actually, cancel that I clicked on browse which brought up a dialog with my repository - I clicked trunk It came back with trunk\new folder I deleted new folder I have now got to the next step - commit comment... On 5/3/07, AJ Mercer <[EMAIL PROTECTED]> wrote: > > This does indeed seem like wha

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread AJ Mercer
This does indeed seem like what I am after but... It wants to create a folder - I want it to go straight into the trunk. I have set up my repository like http://svn.myServer.net:81/myProject/trunk/ It looks like this process will end up creating this http://svn.myServer.net:81/myProject/

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread Andrew Scott
Your welcome AJ. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread AJ Mercer
This sounds like what I am after - thanks Andrew. Trying it out now ... On 5/3/07, Andrew Scott <[EMAIL PROTECTED]> wrote: > > There is an option to share, so if the website is not in SVN, and you are > using Eclipse SVN plugin goto team and share project. This will put the > whole project into

[cfaussie] Re: oracle plugin for eclipse

2007-05-02 Thread Pat Branley
The web tools project for eclipse comes with a very basic JDBC based database browser. I use this + a combo of the RDS plugin. you cant call DDL (alter table etc) statements from the RDS query builder. And it only works on windows i understand. http://www.eclipse.org/webtools/community/tutorials

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread Andrew Scott
There is an option to share, so if the website is not in SVN, and you are using Eclipse SVN plugin goto team and share project. This will put the whole project into SVN for you. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613

[cfaussie] Re: Subversion - import / checkout

2007-05-02 Thread Mark Stanton
Import, then checkout into an empty directory. If the directory you want to check out to is already full of stuff, rename it and make a new directory or backup your existing files to somewhere else. SVN won't check out over the top of existing files. Reading the first few pages of http://svnbook.

[cfaussie] Subversion - import / checkout

2007-05-02 Thread AJ Mercer
Back with another subversion question :- I have a website that I want to put into source control - subversion So to put it in I use the svn import To started versioning the code, I have to check it out to a working directory - but what if the directory I imported it from IS the working directory?

[cfaussie] Re: oracle plugin for eclipse

2007-05-02 Thread Geoff Bowers
On May 2, 11:25 am, "AJ Mercer" <[EMAIL PROTECTED]> wrote: > Does anyone know of / recommend an Eclipse plugins for database browsing / > running sql type of thing that can connect to Oracle? You might consider the RDS plugin for Eclipse -- looks like you have to have FlexBuilder to get hold of i

[cfaussie] Re: Subversion - ignore Application.cfm

2007-05-02 Thread Hunter
I found your question when I was searching for the same. I found it. You cannot add files to svn:ignore once they have been checked in. Try to create a new file in your local project and you will find the link enabled. On Apr 27, 4:05 am, "AJ Mercer" <[EMAIL PROTECTED]> wrote: > Can some one plea

[cfaussie] Re: Dynamically Read SQL Table Column Names

2007-05-02 Thread AJ Mercer
Most databases have tables that store table metadata like SQL Server has sysobjects Informix has systables, syscolumns You can query these tables to get the information you are after. What Database Server are you using? On 5/3/07, claude raiola <[EMAIL PROTECTED]> wrote: > > Just wonderin

[cfaussie] Re: Dynamically Read SQL Table Column Names

2007-05-02 Thread David Harris
You could try: SELECT * FROM [table name] WHER 1 = 2 list of Columns #qInfo.columnList# Information about columns Stephen M wrote: > That would be query_name.columnList which gives you a comma- > delimited list of the query columns. > > Stephen > > On May 3, 6:57 am, "claude raiola" <[EMAI

[cfaussie] Re: Dynamically Read SQL Table Column Names

2007-05-02 Thread Stephen M
That would be query_name.columnList which gives you a comma- delimited list of the query columns. Stephen On May 3, 6:57 am, "claude raiola" <[EMAIL PROTECTED]> wrote: > Just wondering if its possible to dynamically read column names of an > existing sq table. > > What I am trying to create is

[cfaussie] Dynamically Read SQL Table Column Names

2007-05-02 Thread claude raiola
Just wondering if its possible to dynamically read column names of an existing sq table. What I am trying to create is a facility where the user can select the table name which will then list the columns of the given table. The user can the select the column names of choice which will in turn b

[cfaussie] Re: Speaking of new CF sites

2007-05-02 Thread Dmitry Yakhnov
Nice! Thanks for information sharing. Hope that Do Not Email Register (domain www.donotemail.gov.au is already booked, but not active yet) will come alive soon too ;-) Best regards, Dmitry Yakhnov Technical Director Yakhnov Studio http://www.yakhnov.info/ -Original Message- From: cf

[cfaussie] Re: [offlist] Re: Speaking of new CF sites

2007-05-02 Thread Zac Spitzer
FYI: gmail flagged the activation email as spam for me On 5/2/07, Barry Beattie <[EMAIL PROTECTED]> wrote: > > > > > See...that's what stress does to you, I've even forgotten how to spell > > my own name, > > then enjoy the chance to catch your breath knowing you've done a good > job that tons of

[cfaussie] Re: [offlist] Re: Speaking of new CF sites

2007-05-02 Thread Barry Beattie
> > See...that's what stress does to you, I've even forgotten how to spell > my own name, then enjoy the chance to catch your breath knowing you've done a good job that tons of people will appreciate good on yer, Stephen --~--~-~--~~~---~--~~ You received this me

[cfaussie] Re: Speaking of new CF sites

2007-05-02 Thread Stephen M
On May 2, 9:38 pm, Stephen M <[EMAIL PROTECTED]> wrote: > Then go read the fine print that says "Phone registrations are coming > soon" > > Stepehn > See...that's what stress does to you, I've even forgotten how to spell my own name, regards, Stpehen --~--~-~--~~~---

[cfaussie] Re: Speaking of new CF sites

2007-05-02 Thread Stephen M
Then go read the fine print that says "Phone registrations are coming soon" In fact that's where the bulk of the work will be done. I can't say too much more, don't want to spoil Helen's surprise, but there are some very good people working with some very expensive telephony equipment who will m

[cfaussie] Re: Speaking of new CF sites

2007-05-02 Thread M@ Bourke
They have the internet on computers now? On 5/2/07, Barry Beattie <[EMAIL PROTECTED]> wrote: > > > please forgive me for saying... > > "Your email address :" _ > [ ] "Email me before this registration expires." > > we all onlist have email addresses but (being a _mandatory_ field)

[cfaussie] Re: Speaking of new CF sites

2007-05-02 Thread Barry Beattie
please forgive me for saying... "Your email address :" _ [ ] "Email me before this registration expires." we all onlist have email addresses but (being a _mandatory_ field) can this be safely said for everyone? Laura, the nice old lady down the road, Mal and Jean the retired cou

[cfaussie] Re: Speaking of new CF sites

2007-05-02 Thread Peter Tilbrook
Woo hoo! Barely a day goes by without annoying calls. -- Peter Tilbrook ColdGen Internet Solutions President, ACT and Region ColdFusion Users Group PO Box 2247 Queanbeyan, NSW, 2620 AUSTRALIA http://www.coldgen.com/ http://www.actcfug.com/ Tel: +61-2-6284-2727 Mob: +61-0432-897-437 Email: [EMA

[cfaussie] Re: Speaking of new CF sites

2007-05-02 Thread Andrew Scott
Yay.. I am registering.. On 5/2/07, Stephen M <[EMAIL PROTECTED]> wrote: > > > http://www.donotcall.gov.au is now live. > > To be officially launched by Senator Helen Coonan (Minister for > Communications) sometime tomorrow (Thursday 3rd), but we've just > opened the firewall becau

[cfaussie] Speaking of new CF sites

2007-05-02 Thread Stephen M
http://www.donotcall.gov.au is now live. To be officially launched by Senator Helen Coonan (Minister for Communications) sometime tomorrow (Thursday 3rd), but we've just opened the firewall because she might mention it on Sunrise (channel 7) at 7.10 am. I don't have to invite anyone to try and