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 Wanet Telecoms Ltd 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: omerdurdu
  • Content: Threads
  • Order by date
  1. omerdurdu

    search form not working when you choose "or"

    Can someone help me on about this. I have a search form with two operators "and" "or" The query is working when I click "and" but not working when I click "or", it seems query not ending. Here is the query: SELECT Parkcode_XREF.Parkcode1...
  2. omerdurdu

    round the decimals up

    I wonder how can I round the decimal up. Lets say I have something like 1.025, I would like to round this number up like 1.03 or 1.022 round this number just down 1.02. Is there anyway to do this. Thanks
  3. omerdurdu

    why can I insert date into Oracle database date column

    Oracle database I have a table and a field called Date and type is date. When I try to insert date in it it says invalid user.table column, table column or column specification; Here is the code: insert into parkcode_xref(date) values ('#CrateODBCTime(Now())#') Thanks for help
  4. omerdurdu

    DateAdd time period with Oracle

    I am trying to see a week worth of modified data in my oracle database and I have a field contains modifying date. I wrote the code but the result is strange: It is just using the "day" as a criteria, In other words when I say -7 it is going and finding all data for 7 days but for all...
  5. omerdurdu

    showing xml tags on the window

    Is there anyway to see the xml tags on the window as a output. I have a page like this: <metadata><br> <idinfo><br> <citation><br> <citeinfo><br> <origin>#q1.Originator_Names#</origin><br> <pubdate>#q1.Publication_Date#</pubdate><br> <title>#q1.Title#</title><br>...
  6. omerdurdu

    download file but asking where to save

    Can someone help me on this. In my web site I have a button for downloading file. What I would like to do when someone click that button, he or she can she the window where to save the file in their computer. like upload a file. How can I do that. Thanks
  7. omerdurdu

    calling java class file

    Can someone help me on calling java class file from coldfusion. I know I can sue <cfobject> or <cfscript> CreateObject but I am not sure how to do it. I read several articles but not sure what is going on. Can someone help me. Thanks
  8. omerdurdu

    parsing data from xml files

    I am new in Java programming. I have a question about parsing data from an xml file. That can be maybe using string functions or some other functions. here is the xml file I have: <?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot;?> <metadata> <idinfo> <citation> <citeinfo>...
  9. omerdurdu

    parsing data from xml files

    I am new in Java programming. I have a question about parsing data from an xml file. That can be maybe using string functions or some other functions. here is the xml file I have: <?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot;?> <metadata> <idinfo> <citation> <citeinfo>...
  10. omerdurdu

    xml syntax with CFSCRIPT

    I have something like this but it is giving a syntax erro can someone help me: <cfscript> numSrcinfo=ArrayLen(mydoc.metadata.dataqual.lineage.XmlChildren); num=ArrayLen(mydoc.metadata.dataqual.lineage.procstep); numLinage=numSrcinfo-num; for(k=1; k LTE #numLinage#; k = k+1) { if...
  11. omerdurdu

    running coldfusion files from command line

    Can I run a coldfusion file on command line
  12. omerdurdu

    use string functions in xml

    Hello Can someone help on this problem: I have like 1000 xml files and eachfile has 500-700 lines. I would like to write a program to put the data in these xml files into my oracle database. The problem with these xml files is all files are not into same structure. I mean some of them has more...
  13. omerdurdu

    summing values in the same form page.

    Hello, I have a form page with input boxes. What I would like to do sum the values in the input boxes in the same page. here is the a sample code. <cfform name=&quot;aa&quot; action=&quot;update.cfm&quot;> <input type=&quot;text&quot; name=&quot;cc&quot; value=&quot;0&quot;> <input...
  14. omerdurdu

    how many input box I can put in one page

    I created a form, it has 168 input box. My question is how many input box I can put in one page. When I click update button it is giving error: [OBDC socket error] Too many fields defined. When I cut input form at 128th input box, it is updating. Does someone has any idea what is happening...
  15. omerdurdu

    long forms problem

    I have a form has like 1000 lines. Is it possible restrict that 100 lines (with input boxes)per page and at the end of the form, I mean at 10th page put a insert button and instert data into database. Do you have any idea how to do that.
  16. omerdurdu

    Passing &quot;file name&quot; as a variable

    I have a browse page like this: <from action=&quot;output.cfm&quot; enctype=&quot;multipart/form-data&quot; method=&quot;post&quot;> Browse file:<input name=&quot;FileName&quot; type=&quot;file&quot;> <input type=&quot;submit&quot; value=&quot;Enter Data&quot;> </from> In my output.cfm, I have...
  17. omerdurdu

    Coldfusion sever directory and SSL webroot directory different

    I installed Coldfusion server and as my web documentation the directory is c:\netscape\servers\doc\nn1\dirn in other words my webroot is this directory. But my SSL root is c:\netscape\servers\doc\nn1\nrid-ssl When I call my web site from SSL root, seems the coldfusion server is not working. Can...
  18. omerdurdu

    Colfusion queries not working on IPlanet web server

    I am using IPlanet web server 6 what I did on IPlanet webserver, I changed style to call the page from directory like http://www.aaa/metadata But this time seems CFquery not working in my application. Is someone had any problem like this. thanks.
  19. omerdurdu

    web address will be folder instead of file name

    My web site is in a called &quot;datacat&quot;. There is a file index.cfm which is my main web site page. Is there anyway to set address: http://wwww.meta.gov/datacat instead of http://wwww.meta.gov/datacat/index.cfm Thanks for your help
  20. omerdurdu

    converting acess database to xml and putting xml file into oracle

    I have a question about xml files to oracle via coldfusion I have an xml file, created from access database. I wold like to write some code and put the this xml file into Oracle database. Can someone give me an idea about that Thanks,

Part and Inventory Search

Back
Top