CF 8 Enterprise Database Drivers

2007-11-02 Thread Ian Skinner
Is there a document or some method to find out exactly what drivers - make and model number - come with ColdFusion 8 enterprise. It would also be nice to see a how to guide for the time one may have to get under the hood and take wrenches and screwdrivers to monkey with these drivers. My

RE: CF 8 Enterprise Database Drivers

2007-11-02 Thread John Mason
-Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Friday, November 02, 2007 4:03 PM To: CF-Talk Subject: CF 8 Enterprise Database Drivers Is there a document or some method to find out exactly what drivers - make and model number - come with ColdFusion 8 enterprise. It would also

Re: CF 8 Enterprise Database Drivers

2007-11-02 Thread Janet MacKay
I don't know how to get a listing of all available drivers, but you could always check individual ones using one of these methods http://carehart.org/blog/client/index.cfm/2006/8/8/checking_jdbc_driver_version It assumes you know the driver names, but you could get that information by

Re: CF 8 Enterprise Database Drivers

2007-11-02 Thread Ian Skinner
Is there a particular reason you want to play with the drivers? John Mason Nope, I'm hoping not to have to. But we are beginning the documentation process on how to build a brand new server here. A place that has not seen a new server since CF 4.5 was new and shiny. There are some very odd

Re: CF code inside database column

2007-02-03 Thread Robert F
I am building a site where I want the user to be able to drop in various elements so they can customize the way the site looks. I have a custom tag that takes an argument of something like products.main and that corresponds to an item in the database which has a text field with html and

CF code inside database column

2007-02-01 Thread Robert F
I can't seem to remember if it's possible to get CF to parse/execute coldfusion tags that are inside a database column. For instance, I have a resultset that I am going to output and the column i'm outputting has html tags with a cf tag mixed in there as well. I thought maybe wrapping an

Re: CF code inside database column

2007-02-01 Thread Mark Mandel
You have to write it out to a file beforehand, and then cfinclude it... But I have to ask.. why are you doing this? Mark On 2/2/07, Robert F [EMAIL PROTECTED] wrote: I can't seem to remember if it's possible to get CF to parse/execute coldfusion tags that are inside a database column. For

Re: CF code inside database column

2007-02-01 Thread Mary Jo Sminkey
I can't seem to remember if it's possible to get CF to parse/execute coldfusion tags that are inside a database column. For instance, I have a resultset that I am going to output and the column i'm outputting has html tags with a cf tag mixed in there as well. One way I've done this in

RE: does cf choke on database nulls?

2004-05-10 Thread John Beynon
You need to alias it, Select sum(stoptime) as stoptime from reports jb -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: 10 May 2004 14:13 To: CF-Talk Subject: does cf choke on database nulls? select sum(stopTime) from reports where vehicleNumberoni = 58444

RE: does cf choke on database nulls?

2004-05-10 Thread John Beynon
Duh! Ignore me...more coffee! -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED] Sent: 10 May 2004 14:11 To: CF-Talk Subject: RE: does cf choke on database nulls? You need to alias it, Select sum(stoptime) as stoptime from reports jb -Original Message- From

RE: does cf choke on database nulls?

2004-05-10 Thread Tony Weeg
. makes sense. thanks! tony -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED] Sent: Monday, May 10, 2004 9:11 AM To: CF-Talk Subject: RE: does cf choke on database nulls? You need to alias it, Select sum(stoptime) as stoptime from reports jb -Original Message- From

RE: does cf choke on database nulls?

2004-05-10 Thread Tony Weeg
its all good man! thanks anyway. tw -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED] Sent: Monday, May 10, 2004 9:14 AM To: CF-Talk Subject: RE: does cf choke on database nulls? Duh! Ignore me...more coffee! -Original Message- From: John Beynon [mailto:[EMAIL

Re: does cf choke on database nulls?

2004-05-10 Thread Dick Applebaum
Looks like a driver error. Interesting that I am having a null problem in CFML (not the driver) with BlueDragon. I have been on this list for years and don't recall any posts where DB nulls were improperly handled by a driver or CFML.(there have been issues with how to logically handle

RE: does cf choke on database nulls?

2004-05-10 Thread Tony Weeg
now, is put this: and len(lngStoppedTime) = 9 to prevent the issue. now to my backend developer, ill have to handle him later!! adios tw -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED] Sent: Monday, May 10, 2004 9:26 AM To: CF-Talk Subject: Re: does cf choke

does cf choke on database nulls?

2004-05-10 Thread Tony Weeg
select sum(stopTime) from reports where vehicleNumberoni = 58444 returns a null in sql server query analyzer. same query ran from cfmx, gives this error: [Macromedia][SQLServer JDBC Driver][SQLServer]Arithmetic overflow error converting _expression_ to data type int. 22001 there are no

CF in a database

2004-04-09 Thread Eric Jones
I posted this on CF-Newbie as well. Sorry for the cross post. Hey all, I'm wondering is it possible to store CF Code in a database and then have the CF server execute it when it's extracted? if so can you give me a working example?? ERJ [Todays Threads] [This Message] [Subscription

RE: CF in a database

2004-04-09 Thread Barney Boisvert
: CF in a database I posted this on CF-Newbie as well. Sorry for the cross post. Hey all, I'm wondering is it possible to store CF Code in a database and then have the CF server execute it when it's extracted? if so can you give me a working example?? ERJ [Todays Threads

RE: CF in a database

2004-04-09 Thread Adkins, Randy
- From: Eric Jones [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 2:45 PM To: CF-Talk Subject: CF in a database I posted this on CF-Newbie as well. Sorry for the cross post. Hey all, I'm wondering is it possible to store CF Code in a database and then have the CF server execute it when

RE: CF in a database (my apologies)

2004-04-09 Thread Adkins, Randy
To: CF-Talk Subject: RE: CF in a database The short answer is no. The long answer is you can do it by writing the CF from the DB to a file, and the include that file.However, that's nasty because you have the compilation cycle every request, and writing files and then deleting them adds a lot

RE: CF in a database

2004-04-09 Thread Tangorre, Michael
Lets not get into the ugliness of this!!! CFOUTPUT QUERY=qGetMyCode #EVALUATE(qGetMyCode.myCode)# /CFOUTPUT [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: CF in a database (my apologies)

2004-04-09 Thread Tangorre, Michael
23.5 hours and counting :-) -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 2:56 PM To: CF-Talk Subject: RE: CF in a database (my apologies) spoke to soon, doh nevermind, thats right, you can't cause the evaluae would to display

RE: CF in a database (my apologies)

2004-04-09 Thread Barney Boisvert
, April 09, 2004 11:56 AM To: CF-Talk Subject: RE: CF in a database (my apologies) spoke to soon, doh nevermind, thats right, you can't cause the evaluae would to display the code as string and not as commands.. My apologies.. lack of sleep the last few days -Original Message

RE: CF in a database (my apologies)

2004-04-09 Thread Adkins, Randy
yeah I know ... just running on empty here. pushing 35 hours of non-sleep... soon I can go home and crash for awhile. -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 3:03 PM To: CF-Talk Subject: RE: CF in a database (my apologies

RE: CF in a database (my apologies)

2004-04-09 Thread Brook Davies
If the data does not change that often, you should be okay writing it to a cfml file and then including it. On future uses of the data you can check to see if the file already exists and if not re-generate it, and if it does, just include it. Whenever the data in the DB record is updated, also

RE: CF in a database

2004-04-09 Thread Jim Davis
. Jim Davis _ From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 2:55 PM To: CF-Talk Subject: RE: CF in a database Yes and Yes Once it is saved into the DB such as the following into a field called: myCode : CFOUTPUTCFSET myName = Randy#myName#/CFOUTPUT When you call

RE: CF in a database (my apologies)

2004-04-09 Thread Brook Davies
and crash for awhile. -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 3:03 PM To: CF-Talk Subject: RE: CF in a database (my apologies) You're not totally off base.You could use evaluate for some things (expressions), but certainly not for any

CF - post to database question

2003-11-24 Thread Michael Grove
I am looking for a way to post information directly to a database from a csv, excel or text delimited file. I am looking for one of two options. Option one would give a user the ability to email the file to a specific email address and the server/web app would pull the data from the file

Re: CF - post to database question

2003-11-24 Thread Bryan Stevenson
- Vancouver Island ColdFusion Users Group Founder Director www.cfug-vancouverisland.com - Original Message - From: Michael Grove To: CF-Talk Sent: Monday, November 24, 2003 8:44 AM Subject: CF - post to database question I am looking for a way to post information directly

CF and Universe Database

2003-03-25 Thread Huynh Weiming
A friend told me that he could not get Universe Database to work with Coldfusion. He said that Universe uses ODBC 2.0 but Coldfusion use ODBC 3.0. Is this true? ~| Archives:

RE: CF with Advantage Database Server ? Anyone?

2001-05-26 Thread Arden Weiss
Database Server configured with CF. Follow that analogy and I think you will be able to get Advantage Database Server configured. The Extended Systems Folks said they would help, but I never got around to asking them for assistance. Their 800 number is 800-235-7576. If you would like the paper

Re: CF with Advantage Database Server ? Anyone?

2001-05-26 Thread Pablo Varando
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, May 26, 2001 3:21 PM Subject: RE: CF with Advantage Database Server ? Anyone? Coming from a Clipper and FoxPro background, I bought and installed Advantage Database Server but never got around to getting it setup with Cold Fusion (client

RE: CF with Advantage Database Server ? Anyone?

2001-05-26 Thread Mark Warrick
Varando [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 7:40 PM To: CF-Talk Subject: CF with Advantage Database Server ? Anyone? I am faced with a customer that is needing a coldfusion powered site, but his company uses a database I've never heard of called Advantage Database Server

RE: CF with Advantage Database Server ? Anyone?

2001-05-26 Thread Tony Schreiber
it to you -- it's about 900mb so I didn't want to send it out via my 56k 900mb? What the heck is in that paper? Tony Schreiber, Senior Partner Man and Machine, Limited mailto:[EMAIL PROTECTED] http://www.technocraft.com http://www.simplemessageboard.com

RE: CF with Advantage Database Server ? Anyone?

2001-05-26 Thread Arden Weiss
Whoops -- 900kb of course... ^ / \__ (@\___ / O /(_/ /_/ Whoof... 410-757-3487 -Original Message- From: Tony Schreiber [SMTP:[EMAIL PROTECTED]] Sent: Saturday, May 26, 2001 5:24 PM To: CF-Talk Subject:RE: CF with Advantage Database

CF with Advantage Database Server ? Anyone?

2001-05-25 Thread Pablo Varando
I am faced with a customer that is needing a coldfusion powered site, but his company uses a database I've never heard of called Advantage Database Server. It does have OLEDB and ODBC capabilities, but am unsure as if ColdFusion could handle this project. I thought I'd ask everyone here and

CF Variables in database...

2001-03-25 Thread Steve Reich
I have data in my database that contains CF varaibles. For example, "Hello, Mr. #lname#" might be in my database. I call this data from a query and insert it into a page that has lname defined. So I want it to assign a value to the variable. But when I out the code, it is returned

Re: CF Variables in database...

2001-03-25 Thread William Wheatley
ColdFusion Consulting Partner www.aeps.com www.aeps2000.com 954-472-6684 X303 ICQ: 417645 - Original Message - From: "Steve Reich" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Sunday, March 25, 2001 4:10 PM Subject: CF Variables in database... I have data i

Re: CF Variables in database...

2001-03-25 Thread Steve Reich
ot; [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Sunday, March 25, 2001 4:10 PM Subject: CF Variables in database... I have data in my database that contains CF varaibles. For example, "Hello, Mr. #lname#" might be in my database. I call this data from a query

CF and Progress Database ODBC drivers

2000-06-27 Thread Cold Fusion
I have an IIS box running CF451 and I want to be able to connect to a progress database which runs my companies financial applications. It runs on HP-UX. Anyway, there is no native CF support for progress as far as I can tell, but can someone pouint me the way to some instructions on how to

Re: CF and Progress Database ODBC drivers

2000-06-27 Thread Stephen Garrett
I ran into this sort of issue with Sybase. We needed to create a ODBC datasource with the SYBASE tools and connectivity options. I think we actually tested with M$'s ODBC test tool. So, I would check to see what Progress offers in the way of ODBC connections. Assuming they do, create an ODBC

RE: CF and Progress Database ODBC drivers

2000-06-27 Thread Mark Warrick
, 2000 1:01 PM To: [EMAIL PROTECTED] Subject: CF and Progress Database ODBC drivers I have an IIS box running CF451 and I want to be able to connect to a progress database which runs my companies financial applications. It runs on HP-UX. Anyway, there is no native CF support for progress

RE: [cf-talk][OT] : Database Theory

2000-04-12 Thread Paul Wakefield
and not of The Board of Executors -Original Message- From: Ken M. Mevand [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 12, 2000 10:09 AM To: 02 cf-talk Subject: [cf-talk][OT] : Database Theory this is a question of db design. suppose i have a field in a table that can contain only 3