Login From SQL DBase?

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

  1. #1

    Default Login From SQL DBase?

    I am learning CF at this time and am used to using ASP. For Login Forms I have
    always used the Dreamweaver Login Behavior. Now with cold fusion MX7 there is a
    CF Login Wizard. This only sets one user and pass, I want to authenticate by
    the users in my dabase. Is there a way to change the CF code to use my dbase,
    or is there just an easier way of doing this?

    glebreck Guest

  2. Similar Questions and Discussions

    1. #25958 [Opn->Bgs]: odbc_connect fails to login to remote Dbase 5
      ID: 25958 Updated by: kalowsky@php.net Reported By: brian dot garvis at mascommsys dot com -Status: Open...
    2. #25958 [Fbk->Opn]: odbc_connect fails to login to remote Dbase 5
      ID: 25958 User updated by: brian dot garvis at mascommsys dot com Reported By: brian dot garvis at mascommsys dot com -Status:...
    3. #25958 [Opn]: odbc_connect fails to login to remote Dbase 5
      ID: 25958 User updated by: brian dot garvis at mascommsys dot com Reported By: brian dot garvis at mascommsys dot com Status: ...
    4. #25958 [Opn->Fbk]: odbc_connect fails to login to remote Dbase 5
      ID: 25958 Updated by: kalowsky@php.net Reported By: brian dot garvis at mascommsys dot com -Status: Open...
    5. #25958 [NEW]: odbc_connect fails to login to remote Dbase 5
      From: brian dot garvis at mascommsys dot com Operating system: Windows 2003 Server PHP version: 4.3.2 PHP Bug Type: ODBC...
  3. #2

    Default Re: Login From SQL DBase?

    Do you store the user ID/password in the DB? Well, then roll your own. SELECT
    user from LoginTable WHERE userid = '#form.userID#' and
    password='#form.password#' 'Course, I have no idea what the DW Login Behavior
    does or the Login Wizard for that matter, and I'm happy I don't. If you want
    something to work the way you want it to work, do it yourself. HTH,

    philh 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