RE: large cf ecom sites?

2004-12-29 Thread Bryan Love
Autobytel.com is pretty stinkin big. They're CF. -Original Message- From: Emmet McGovern [mailto:[EMAIL PROTECTED] Sent: Friday, December 17, 2004 12:00 PM To: CF-Talk Subject: large cf ecom sites? I have a client that is starting to backpedal on wanting to use coldfusion for their

RE: Joins

2004-12-06 Thread Bryan Love
Just do a SELECT DISTINCT... -Original Message- From: Stuart Kidd [mailto:[EMAIL PROTECTED] Sent: Monday, December 06, 2004 4:16 PM To: CF-Talk Subject: Re: Joins Hi, I'm getting an error with both your reply and Michaels so I don't know if it's something I explained incorrectly. I'm

RE: My First Shopping Cart

2004-08-19 Thread Bryan Love
For high traffic and easily modifiable code, nothing compares to Netready. Check it out: http://www.cfnetready.com http://www.cfnetready.com +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer

RE: Inserting a query string into a text field

2004-08-17 Thread Bryan Love
mr_message_id = 10132 AND mr_user_id = 'Mitch' AND mr_result = 4 AND tpines.message_to_recipient.mr_recipient_id = T1.recipient_id) )!---Query String ends ---') WHERE tbl_CampaignMgrActionData.ActionID = 68 f +---+ Bryan Love Database Analyst Macromedia Certified

RE: Inserting a query string into a text field

2004-08-17 Thread Bryan Love
tbl_CampaignMgrActionData.ActionID = 68 The DB thinks that the single quote in front of Mitch marks the end of the string, that's why you need to let CF escape it before sending it to the DB. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet

RE: ecommerce storefronts

2004-08-12 Thread Bryan Love
Check out the new website for Netready: http://cfnetready.com/ http://cfnetready.com/ And as part of our kickoff for this website, we'll sell our software for $200 to anyone who mentions this message through the end of August! +---+ Bryan Love

RE: SQL help!

2004-08-12 Thread Bryan Love
.id = t2.id WHERE t2.id IS NULL (Oracle) SELECT t1.id FROM table1 t1, table2 t2 WHERE t1.id = t2.id(+) AND t2.id IS NULL +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems

RE: getting rid of Evaluate in CF 5.0

2004-08-12 Thread Bryan Love
the times I've seen someone do that, over 90% of them could have been avoided by structuring the logic differently. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL

RE: Is this possible in SQL

2004-08-12 Thread Bryan Love
+---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my

RE: advanced search

2004-06-16 Thread Bryan Love
QBOS_HELPFILE WHERE keywordsLIKE '%#word1#%' OR keywordsLIKE '%#word2#%'... etc... +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: ECommerce practices

2004-03-25 Thread Bryan Love
Now session.myform points to the same struct as form and you won't lose it. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: Loosing sessions on the same server with SSL

2004-03-17 Thread Bryan Love
. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my child may have

RE: Pre-Written E-commerce Packages in ColdFusion

2004-02-25 Thread Bryan Love
Yes, it's written in ColdFusion. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must

RE: Pre-Written E-commerce Packages in ColdFusion

2004-02-20 Thread Bryan Love
pid=19 +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my

RE: Merchant Account Suggestions

2003-10-17 Thread Bryan Love
I'd recommend Authorize.net.I've integrated Authorize.net, SkipJack, and Verisign.Verisign is good, but their CF tag doesn't work, so I had to use COM to integrate it into my shopping cart.SkipJack is also good, but more restrictive than AuthNet.Authorize.net allows the ability to pay by ECHECK if

RE: Constrain on a clob

2003-10-15 Thread Bryan Love
I don't know for sure if you can search *LOBs, but I know you can search TEXT fields... have you thought about whether or not you can use a TEXT field instead?You might already know about this, but in case you don't: They are called ConText indexes... and the creation of them looks something like

RE: SQL : Finding element in list of values in a query field.

2003-08-27 Thread Bryan Love
IS NOT NULL AND talents '' 3) now you can run queries like this: SELECT * FROM [table] WHERE talents LIKE '%,#aTalent#,%' +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems

RE: XML shopping cart?

2003-08-25 Thread Bryan Love
You could cheat and use WDDX - it converts structures to XML and back again... +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: DateDiff question

2003-08-19 Thread Bryan Love
. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my child may have peace'... - Thomas

RE: SQL Question...

2003-08-14 Thread Bryan Love
. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my child may have peace

RE: HELP! Can't clear the CLIENT scope

2003-08-14 Thread Bryan Love
The client scope is NOT a struct ;) +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must

RE: Totally Stupid Array[1][2] Output Question

2003-07-30 Thread Bryan Love
Just curious... why are you using a two-dimensional array? Why not just use a normal array and make all the odd indices questions and all the even indices answers? +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet

RE: Doing Forms in Series

2003-07-29 Thread Bryan Love
simply change the action variable and cause a new page to display in the second switch. || HISTORY || Author: Bryan Love ; [EMAIL PROTECTED] ; 2/1/01 || VARIABLES || - variables.fuseAction || END FUSEDOC || --- !---### action switch

RE: Mach II

2003-07-29 Thread Bryan Love
I totally agree with you regarding FuseBox 3, but the older FuseBox architectures were simpler and far more easy to learn/understand/implement. I've written many apps using FB2-ish architecture and they absolutely fly when it comes to performance and I've gotten a lot of positive feedback from

RE: [sql] grouping

2003-07-28 Thread Bryan Love
cfset total = totalRecs + myquery.totalRecs[i-1] #AGY# #FUND# #Total# #totalRecs#br /cfloop +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL

RE: on-line stores

2003-07-23 Thread Bryan Love
+---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my child may have peace

RE: Structure, Array, Both?

2003-07-18 Thread Bryan Love
First of all, why are you doing it? Why store the whole thing in memory? +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: Cons to Fusebox

2003-07-17 Thread Bryan Love
Mary Jo, I hope the work on converting CFWebstore to FB is successful, I won't ever need another CF e-commerce app again! Why not try NetReady? It's already done in Fusebox and has an impressive feature list... Since the last update of the web page below there have been a few other additions,

good Forums software?

2003-07-11 Thread Bryan Love
It's been too long since I incorporated a good forums application. Anyone have any suggestions? If it's configurable then I don't care too much how it's written, but if it's not, then I much prefer something in FB2 - NOT FB3. Bryan Love

RE: Data Types?

2003-07-01 Thread Bryan Love
depends entirely on what DB you are using, whether or not you want it to be searchable, and what you want the max allowable size to be. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer

RE: Is there a way to test to see if a data source exists?

2003-06-27 Thread Bryan Love
on Windows you can check the registry: CFREGISTRY ACTION=GETALL NAME=DS_ODBC_List TYPE=ANY BRANCH=HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\ODBC Data Sources cfset DSNnames = valueList(DS_ODBC_LIST.entry)

RE: Decision operators as variables

2003-06-26 Thread Bryan Love
here ya go - here's an example: cfset w = 0 cfset x = NEQ cfset y = 1 cfif evaluate(#w# #x# #y#)hi/cfif +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: CFC performance difficulties

2003-06-26 Thread Bryan Love
post the code you are using to create the array of structs from the query results. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: CFC performance difficulties

2003-06-26 Thread Bryan Love
to get the list of campuses and another to display the information about a chosen campus, right? That's how CF was meant to work best. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer

RE: CFC performance difficulties

2003-06-26 Thread Bryan Love
# #selectCampuses[idx] . /cfoutput +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must

RE: how to get the tablenames in a database

2003-06-26 Thread Bryan Love
What type of DB? +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let

RE: Creating a CF Data Source with CF Code - Possible?

2003-06-26 Thread Bryan Love
I can write you a custom tag if you want... -Original Message- From: James Johnson [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2003 7:59 PM To: CF-Talk Subject: Creating a CF Data Source with CF Code - Possible? Hello, I'm creating an application where trusted users can upload

RE: Charsets when querying db

2003-06-24 Thread Bryan Love
What version of MySQL are you using? Try switching to 4.1 if you aren't using it... http://www.mysql.com/doc/en/Charset-Unicode.html +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer

RE: Vertical Display...

2003-06-24 Thread Bryan Love
) . +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my child may

RE: Vertical Display...

2003-06-24 Thread Bryan Love
+---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my child may have peace'... - Thomas

RE: Charsets when querying db

2003-06-24 Thread Bryan Love
My mistake, I was reading up on the differences in unicode handling between 4.0 and 4.1 and I had 4.1 on my mind. Jochem is correct, you would not want to use 4.1. Good lookin' out, Jochem! +---+ Bryan Love Database Analyst Macromedia Certified

RE: Called as module or include?

2003-06-19 Thread Bryan Love
you might try checking for the existence of the CALLER scope. cfif isdefined(caller) AND isStruct(caller) this template was called using CFMODULE cfelse this template was called using CFINCLUDE /cfif +---+ Bryan Love Database Analyst Macromedia

RE: Called as module or include?

2003-06-19 Thread Bryan Love
will start a fire? ;) +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let

RE: Called as module or include?

2003-06-19 Thread Bryan Love
Who is to say JSP does it right? Personally, I love having my URL/Form scopes split. Amen to that! +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: Called as module or include?

2003-06-19 Thread Bryan Love
mentioning the second one, and to them I say there is a time and place for everything ;) +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: Switching to OLE DB

2003-06-18 Thread Bryan Love
doubt that switching will make any difference one way or another. Maybe your problem is DB related - maybe not - but it almost certainly is not related to your choice of ODBC or OLE drivers. +---+ Bryan Love Database Analyst Macromedia Certified

RE: Data getting truncated on select

2003-06-17 Thread Bryan Love
. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my child may have peace'... - Thomas Paine

RE: Shopping Cart

2003-06-16 Thread Bryan Love
+---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my child may have peace

RE: saving textarea input to rtf

2003-06-12 Thread Bryan Love
??? As far as I know you can't put bold and italics in a text area. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: Pagination (Next n records) for an inner join and grouped out put...

2003-06-12 Thread Bryan Love
to keep track manually. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let

RE: Arrrgh...that's not good...Re: Pagination (Next n records) fo r an inner join and grouped output...

2003-06-12 Thread Bryan Love
there are. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my child may have peace'... - Thomas Paine

RE: CF Not creating sessions???

2003-06-12 Thread Bryan Love
is failing. Most likely the cookies aren't being set and/or transmitted. Did the domain name change? +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: Arrrgh...that's not good...Re: Pagination (Next n records) fo r an inner join and grouped output...

2003-06-12 Thread Bryan Love
for that. Two queries is not that big a deal. It's when you put queries inside loops that you deserve to be shot ;) +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: ArrayDeleteAt for a 2d array?

2003-06-11 Thread Bryan Love
on +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my child may have peace'... - Thomas

RE: SQL Question - Could CF make this easier?

2003-06-11 Thread Bryan Love
','BROCCOLI') ORDER BY Description /cfquery +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: populate the damn array

2003-06-11 Thread Bryan Love
item from the file. Put structNew inside the for loop and each iteration of the list will give ad a new memory pointer and each array item will be unique. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application

RE: Running two applications?

2003-06-10 Thread Bryan Love
;) +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my

RE: ArrayDeleteAt for a 2d array?

2003-06-10 Thread Bryan Love
(LoginArray[ArrayRows][2],client.UserID) !--- delete array row code goes here --- cfset arrayDeleteAt(LoginArray,ArrayRows) cfbreak /cfif /cfloop +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet

RE: ArrayAppend with a 2d array?

2003-06-09 Thread Bryan Love
) cfset trash = arrayAppend(x,y) /cfloop +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

MS Outlook and CF

2003-06-06 Thread Bryan Love
Anyone know how to access MS Outlook's calendar using CF? I assume there is an object I can tap, but I don't know what it would be... +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer

RE: MS Outlook and CF

2003-06-06 Thread Bryan Love
nevermind, found it in the houseoffusion archives after a lengthy search :) +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: Custom Tag Question

2003-06-04 Thread Bryan Love
#) . +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day

RE: CFLOOP, almost there

2003-06-04 Thread Bryan Love
. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my child may have peace'... - Thomas

RE: Custom Tag Question

2003-06-04 Thread Bryan Love
ahh, then the second suggestion will still work - putting caller. in front of the query name. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: Client variables and SSL problem

2003-05-29 Thread Bryan Love
is the same for the http site and the https site and perhaps that will fix it. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: cfobject is not working in CFMX --- urgent issue

2003-05-29 Thread Bryan Love
don't know about CFMX, but in other versions of CF you need the full path to the jvm.dll. This is what I have and it works: Java Virtual Machine Path c:\jre\1.2\bin\classic\jvm.dll +---+ Bryan Love Database Analyst Macromedia Certified

RE: cftransaction cftry order

2003-05-29 Thread Bryan Love
query /cfquery /cftransaction cfcatch oops /cfcatch /cftry +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: CFFILE Upload question

2003-05-29 Thread Bryan Love
try it and see :) +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let

RE: Leave first letter uppercase . . .

2003-05-27 Thread Bryan Love
What DB are you using? Oracle8i has a neat function named initcap that will do it for you. You could say: SELECT INITCAP(LOWER(city)) as city FROM someTable... +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet

RE: Block Competitors from Web site

2003-05-27 Thread Bryan Love
Just have a pre-page pop up that asks them if they are a competitor. Problem solved. just kidding :) +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: Block Competitors from Web site

2003-05-27 Thread Bryan Love
An excellent choice! +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble

RE: cfdirectory

2003-05-27 Thread Bryan Love
be there. +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my child may have peace

RE: Advanced SQL Query Question

2003-05-27 Thread Bryan Love
time you insert a record you set all other records in that category to 0 and set the new one to 1. Then your query just says: SELECT ... FROM table1 WHERE mostRecent = 1 +---+ Bryan Love Database Analyst Macromedia Certified Professional

RE: cfdirectory

2003-05-27 Thread Bryan Love
you could do something like this... cfdirectory directory=#expandPath([virtual directory])# +---+ Bryan Love Database Analyst Macromedia Certified Professional Internet Application Developer TeleCommunication Systems [EMAIL PROTECTED

RE: days in a month

2003-02-18 Thread Bryan Love
the loop once and record the results to a string, then use the string in 4 or 5 different places +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED

RE: Query How-To

2003-01-22 Thread Bryan Love
ORDER BY name +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let

RE: Passing URL vars between pages

2003-01-16 Thread Bryan Love
. +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day, that my child may

RE: OLE DB and Maintain Connections

2003-01-16 Thread Bryan Love
to investigate just how much RAM and disk space SQL Server is allowed to consume. I've also seen CFX tags that caused a server to stop responding sometimes. Are you using any of these? +---+ Bryan Love Macromedia Certified Professional Internet Application

RE: Comparing elements in a list to comma delimited data in a tab le field

2003-01-07 Thread Bryan Love
original question: 1. Jerry is correct about placing commas before and after the list in the DB - it is a must. 2. CONTAINS is a CF function, not SQL. You must use LIKE. +---+ Bryan Love Macromedia Certified Professional Internet Application

RE: loop query check??how to do this

2002-12-11 Thread Bryan Love
The GUI should not allow you to choose to be the mainteacher for students who already have one... It seems to me that the error lies in the GUI and should be fixed there, not behind the scenes. +---+ Bryan Love Macromedia Certified Professional

RE: Query Question

2002-12-10 Thread Bryan Love
make sure when you put values in the seeking column to add a comma before and after the list. So a list of 1,2,3 becomes ,1,2,3, That way when you run the query you can say: WHERE seeking LIKE '%,2,%' +---+ Bryan Love Macromedia Certified

RE: CFLOOP issues

2002-11-22 Thread Bryan Love
The most obvious thing is that the cfset... should be inside the cfif... you should also use form[strImage#i#New] instead of evaluate. +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst

CFMX choking on client vars?

2002-11-18 Thread Bryan Love
Has anyone had issues using CFMX with an ACCESS client storage database? A friend of mine is getting 500 Operation failed on the data source named 'client_storage'. This only seems to happen using CFMX... +---+ Bryan Love Macromedia Certified

RE: Error Executing Database Query.SQLException

2002-11-18 Thread Bryan Love
Does it validate from the CF Administrator? +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED

RE: Timeout has no effect on CFQUERY?

2002-11-11 Thread Bryan Love
timeout. +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my day

RE: sql isNumeric -- Oracle

2002-11-11 Thread Bryan Love
select * from sometable where substr(somecolumn,1,1) BETWEEN '0' AND '9' +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED

RE: Efax from ColdFusion?

2002-11-11 Thread Bryan Love
directly if you look for it... +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble

RE: Self submitting Corm inside CFIF question...(More JavaScrip t than CF)

2002-10-30 Thread Bryan Love
would still execute. +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let

(another) Bug in CFMX - incorrect translation of binary data

2002-10-16 Thread Bryan Love
and retrieve data using Java so I know the issue is with CFMX. +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED

RE: SQL HELP

2002-10-15 Thread Bryan Love
tt.emp_ID_nr IS NULL +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let

RE: help with SQL 'IN' operator

2002-10-15 Thread Bryan Love
content WHERE keywordIDs LIKE '%,23,%' AND keywordIDs LIKE '%,12,%' /cfquery +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED

CFMX - binary data in query

2002-10-15 Thread Bryan Love
) But CFMX is doing something that causes it to be displayed funky after retrieval even though it looks fine when I look directly in the DB. Anyone know why??? Anyone? +---+ Bryan Love Macromedia Certified Professional Internet Application Developer

RE: CFMX - binary data in query

2002-10-15 Thread Bryan Love
one at a time... I suspect there is a bug in the way that CFMX is converting the byte array to a string. Can anyone confirm or deny this? +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst

RE: copying db info with cf

2002-10-10 Thread Bryan Love
Why not just set up replication between the databases to keep them in sync? +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED

RE: CFGRID: can't get .class file

2002-10-10 Thread Bryan Love
it looks to me like you shouldn't be looking in C:\Inetpub\wwwroot\cfide\classes\cfjava.cab but rather in C:\Inetpub\wwwroot\cfide\classes\CFJava2.jar +---+ Bryan Love Macromedia Certified Professional Internet Application

RE: multiple case values in switch statement in cfscript

2002-10-10 Thread Bryan Love
: [execute some code] break; } +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED

RE: Comma-Space as delimiter

2002-10-07 Thread Bryan Love
You can't. You must use replace() to replace the comma/space with a single character that you can use as the delimiter. The bell character works well since it can't be typed (chr(7)). +---+ Bryan Love Macromedia Certified Professional Internet

RE: Can I pass variable to a form on the same page?

2002-10-04 Thread Bryan Love
I highly recommend using CFINCLUDE in a situation like this. It's much simpler. Have your form submit to some action page that simply does this: CFINCLUDE template=../#form.fiscalyear#/#form.statecode#.cfm +---+ Bryan Love Macromedia Certified

OT topics and posts about OT topics and posts about OT topics

2002-10-04 Thread Bryan Love
sorry, had to do it! +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst TeleCommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble

RE: loop problems

2002-10-04 Thread Bryan Love
AND steel.method_id = method.method_id AND lookup.type_id IN (Select type_id from lookup where lookup.type = '#form.steeltype#') /CFQUERY +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database

  1   2   3   4   5   6   >