ASP Connection String for Flatfile database?

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default ASP Connection String for Flatfile database?

    Hi All!

    Could someone please give me an example of a connection string for a flat
    file database or point me to a good resource for how I can build one?

    Thank you for any advice!

    Rob
    :)


    Robert Mark Bram Guest

  2. Similar Questions and Discussions

    1. convert string to safe string before adding to database
      Hi I am updating a site for a client who is running CF5. The update and insert queries break when the user uses inverted commas ". I currently...
    2. DB Connection String
      Hi, I need to store the database connection string inside web.config file. What would be the best way to encrypt and decrypt it? Thanks, Ali
    3. database connection string...
      I want to store a database connection (includes username & password) for my asp.net app, currently I have it stored in the web.config file - I know...
    4. Connection String to connect to SQL Server Database
      http://www.able-consulting.com/ADO_Conn.htm Brian Staff
    5. database connection string encryption and decryption
      Hi I want to encrypt the database connection string and add it to web.config file. Before connecting to the database I want to decrypt it. Can...
  3. #2

    Default Re: ASP Connection String for Flatfile database?

    What type of "flat file database"? Do you mean a CSV file?
    [url]http://www.able-consulting.com/ADO_Conn.htm[/url]
    has lots of connection strings.

    Cheers
    Ken

    "Robert Mark Bram" <none> wrote in message
    news:40a6ce9e$0$31678$afc38c87@news.optusnet.com.a u...
    : Hi All!
    :
    : Could someone please give me an example of a connection string for a flat
    : file database or point me to a good resource for how I can build one?
    :
    : Thank you for any advice!
    :
    : Rob
    : :)
    :
    :


    Ken Schaefer Guest

  4. #3

    Default Re: ASP Connection String for Flatfile database?

    On Sun, 16 May 2004 12:15:25 +1000, "Robert Mark Bram" <none> wrote:
    >Could someone please give me an example of a connection string for a flat
    >file database or point me to a good resource for how I can build one?
    Flat file isn't the issue, the type of file is. Most flat file
    databases are text files, CSV, TXT or the like, delimited by
    characters for fields and records. BUt an Excel spreadsheet file can
    be a flat file database, and it could be a binary file delineated by
    field and record character lengths.

    So, that said, you need to know what type of flat file structure you
    are using, then find a connection method for it. Take a look here:

    [url]http://www.able-consulting.com/ADO_Conn.htm[/url]

    Look for the Text/CSV files if you have no idea what you're using.

    Jeff
    Jeff Cochran 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