Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: cash0
  • Order by date
  1. cash0

    cftransactions nested in cfinvoke

    Hi, the situation is: I've got a block of code that uses a cftransaction - and inside the cftransaction tags, I have a cfinvoke. The function I call with the cfinvoke also uses cftransaction tags - so techically I have nested the cftransactions - but they are in two different functions. So put...
  2. cash0

    SQL statement max size

    OK. I've finally fixed it I think. Bill, I implemented what you described above, but found that I still had a problem. After many hours of trial and error I realised that it wasn't reading more than 64k either. I don't know if it is a ColdFusion limitation or a SQL server limitation. Anyway...
  3. cash0

    WDDX Max Size?

    I've finally fixed it I think. Initially I thought it was to do with wddx, but then I soon realized that the SQL query just was not writing more and 64000 characters. Furthermore, it didn't read more than 64k either. I don't know if it is a ColdFusion limitation or a SQL server limitation. So...
  4. cash0

    SQL statement max size

    Hi, I'm having problems with the length of SQL statements. I have a string of xml that can be very long - the problem is that the xml string is getting cut off at the 64000th character when I create the SQL statement. The following is ColdFusion code. For those not familiar with ColdFusion -...
  5. cash0

    WDDX Max Size?

    I checked that, but that is not the case. My attention has turned to the update query that places the wddx data into the database. My code looks something like: ------------ <cfwddx action=&quot;cfml2wddx&quot; input='#this.arevisions#' output=&quot;xmlrevisions&quot;> <cfquery...
  6. cash0

    WDDX Max Size?

    I'm having trouble with truncated wddx packets. The error message is usually something like: &quot;WDDX packet parse error at line 1, column -1. End of entity not allowed; an end tag is missing.. &quot; The problem is that the wddx xml string is getting truncated. So decided I count the number...
  7. cash0

    CF equivalent of response.clear

    I've decided to just use cflocation to load an error page. Probably the smarter option anyway. Cfsavecontent may not be all that practical in this instance, but I can see how it can really be useful. Thanks anyway.
  8. cash0

    CF equivalent of response.clear

    Is there an equivalent ColdFusionMX command to response.clear in ASP? I have an error handler function that displays an error message when an error occurs. But, since the error is likely to occur half way through processing the page, some page output is likely to have been processed ready to be...
  9. cash0

    Create node and attribute

    Thankyou
  10. cash0

    Create node and attribute

    This may be easy but I'm damned it I can find a solution. I need to create a node with an attribute. Here's my code so far for creating the node: Set currentElement = objXML.documentElement Set currentElement = currentElement.selectSingleNode(&quot;/cv/Experience&quot;) Set inode =...
  11. cash0

    FreeThreadedDOMDocument problem

    I got around my original problem with the invalid class sting, but I now have this extra complication of the instability. Damn. I definetly don't have the time to create COM components, or try anything too fancy. I think I'll just have to see how I go. My site won't have high loads, or...
  12. cash0

    FreeThreadedDOMDocument problem

    Hi, I'm having trouble instantiating the MSXML2.FreeThreadedDOMDocument.4.0 object from asp. It claims that the class string is invalid, but my server HAS xml parser 4 on it, so it should work - shouldn't it... Any ideas?
  13. cash0

    Specifying &lt; &gt; = in parameterized query

    I have an access query that I call from ASP with the following where clause: WHERE level = [CompLevel] Now, I have a drop down box in which the user can specify 'less than', 'greater than', or 'equal to' a certain value. I want to know how I can pass in < or > or = into the above WHERE clause...
  14. cash0

    LIKE clause in Paramatized query (from ASP)

    Damn it! I solved my own problem before I got through typing it out. I thought I'd better post it anyway in case somebody else had the same problem. I solved it by using % instead of * in the LIKE clause.The original question is below... ------------------------------------------ Hi I've got...
  15. cash0

    Copy SQL2000 db to SQL7 ?

    Thanks. I think I'll go with the DTS option. But, will I be able to connect to the source database from another network. I've done this from inside an intranet from one database to another, but never tried it from totally different network.
  16. cash0

    Copy SQL2000 db to SQL7 ?

    I need to know if there is a reliable way to transfer a database created in SQL Server 2000 to SQL Server 7. I purposely did not use any fancy data types as I could see this issue coming up. Thanks
  17. cash0

    Dinstinct results for Full Text Search

    I'm doing a SQL Server full text search, but it is returning duplicate results. I've tried to do a SELECT DISTINCT but it won't work because the page rank is unique for each record. I ORDER BY RANK so I need to select it. Is there a Full Text Search option that I can use to stop duplicate...
  18. cash0

    FIND and replace?

    I'm trying to search my actionScript for some text using the 'find' facility in the movie explorer (in Flash 5). The problem is that it only finds whole words only - I want to seach for all occurences of Õ - which is what you get when you copy text from MS Word containing some so called 'smart...
  19. cash0

    Fireworks 4 text editor bug

    For a while I've been having terrible trouble with the Text Editor in Fireworks 4. For example, if I select some text, change it to bold or whatever and press OK, the text hasn’t changed to bold. There are numerous other weird things that happen as well – mostly to do with changing the...
  20. cash0

    Motherboard voltage too high?

    I've just upgraded to an Asus A7V333 motherboard and have just installed the PC Probe software which tells me all the vital statistics about the motherboard and processor. Now, the problem is that it is telling me that its +12 Volt voltage is too high. It reports that the current voltage is...

Part and Inventory Search

Back
Top