Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Accessing database

    I've succesfully built cfm webpage from the getting started tutorial of CF MX7.
    Refering to the tutorial i wonder if i can let a user to edit the database
    directly from the webpage. This way i dont have to edit the database from the
    microsoft access instead a user will be able to access/edit the database.Thanks
    in advance!!

    verns Guest

  2. Similar Questions and Discussions

    1. accessing database from webservice
      I'm trying to let my webs ervice access a database, from non public site. It works on my local maschin and on a test server i setup. but i doesn't...
    2. Accessing a database from two locations
      I just found this group so I don't know if this has been discussed previously. Is there a simple way for my partner and me to use the same...
    3. Accessing MySQL database
      I assume you have downloaded the MYSQL ODBC Driver? Once you have done that and installed it, it should work the same as any ODBC driver. You...
    4. accessing database question
      Is there a downside to using multiple tables in an Access database file that is having information written to the different tables and accessed at...
    5. Problem Accessing database
      I'm running ASP on IIS 5. My users who are on the network can access our database. Any users from the internet "outside" the network can't access...
  3. #2

    Default Re: Accessing database

    With the code you write, you can enable users to:
    1. Add, update, or delete records in a table.
    2. Run "canned" reports.
    3. Turn text files into database records.
    4. Work with data from more than one database.

    other neat stuff

    Dan Bracuk Guest

  4. #3

    Default Re: Accessing database

    Hi there
    Generally i got the idea....but frankly speaking i am a beginner...if you dont
    mind, would you please eleborate the steps for me?How do i enable users to
    perform the above mentioned?Thanks again...

    verns Guest

  5. #4

    Default Re: Accessing database

    You would design your ColdFusion pages with the appropriate queries (SELECT
    UPDATE, INSERT, DELETE) to perform the database actions, based on user input on
    the web interface. You can actually create a CF page that allows your clients
    to write free form queries directly in a text box that are then executed in the
    database, but that is dangerous and not advisable.

    Phil

    paross1 Guest

  6. #5

    Default Re: Accessing database

    verns - step number 1 - learn sql

    For learning computer stuff, I like the SAMS books that have titles like Teach
    Yourself language abc is x amount of time.

    I haven't read this particular one, but, I've heard good things about Teach
    Yourself SQL in 10 Minutes, by Macromedia's very own ( ta-da) Ben Forta.

    Dan Bracuk Guest

  7. #6

    Default Re: Accessing database

    Hello guys...thank you very much on your guidance and advise..i am on track now!
    verns Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139