Acessing another Datasource

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

  1. #1

    Default Acessing another Datasource

    Im working with a CF driven dinamic site called 'Reconquista', and the
    datasource it uses is a Coldfusion one.

    I need to access a non-CF datasource, from another site called 'Peru', and
    recover some information to insert in the datasource of 'Reconquista'.

    That module can't be programmed in CF, because CF (as I know in this moment)
    does not acess any other datasource format rather than CF's one, and the
    datasource Im searching for (in Per?) is a common, MSAcess-driven datasource.

    I thought the module can be programmed in ASP, but I dont know how can I made
    a connection to the CF_Datasource of 'Reconquista' in that language.

    ?Is there any form of doing that?

    A way to do that would be entablishing a DSN-Less Connection in CF, but that
    seems impossible.

    Im completely loss with this problem :(:confused;

    Lo atamo con alambre Guest

  2. Similar Questions and Discussions

    1. Join a query datasource and oledb datasource?
      Using CF5 here. I have a query that I'm creating on the fly using the QueryNew() and QueryAddRow() functions. Then I run my query using...
    2. acessing ReportService.wsdl in VB6 with SoapToolkit 3.0
      Paul Mauriello via .NET 247 <anonymous@dotnet247.com> wrote in news:uIgJjwUWFHA.3488@tk2msftngp13.phx.gbl: This question doesnt seem to apply to...
    3. Acessing parent window from child on a Mac
      I know this probably isn't the right place to ask this question. If someone knows of a good place to get help for this problem please point me that...
    4. [PHP] Acessing session vars
      From: "Ed Curtis" <ed@homes2see.com> how As you sit there and wait for us to answer, you could have taken the 5 second to run this yourself and...
    5. Acessing files without directory structure information
      Hello, I am looking for a way to read a file in a directory (and its subdirectories) without knowing its contents. Practically, I need to choose...
  3. #2

    Default Re: Acessing another Datasource

    > Im working with a CF driven dinamic site called 'Reconquista', and the
    > datasource it uses is a Coldfusion one.
    >
    > I need to access a non-CF datasource, from another site called 'Peru',
    and
    > recover some information to insert in the datasource of 'Reconquista'.
    >
    > That module can't be programmed in CF, because CF (as I know in this
    moment)
    > does not acess any other datasource format rather than CF's one, and the
    > datasource Im searching for (in Per?) is a common, MSAcess-driven
    datasource.
    >
    > I thought the module can be programmed in ASP, but I dont know how can I
    made
    > a connection to the CF_Datasource of 'Reconquista' in that language.
    >
    > ?Is there any form of doing that?
    Create an ODBC connection to the same database to which 'Reconquista' points
    and access that connection from ASP.
    > A way to do that would be entablishing a DSN-Less Connection in CF, but
    that
    > seems impossible.
    In CFMX 6 and CFMX 7 I think it's no longer possible to create DNS-less
    connections

    --
    <mack />


    Neculai Macarie Guest

  4. #3

    Default Re: Acessing another Datasource

    What do you mean by "CF datasource" and "Non-CF datasource"? CF is a server
    side scripting language. It does not store data.

    CF connects to all sorts of database products, including (but not limited to)
    MS-Access, MySQL, Oracle, Sybase and SQL Server.

    As for ASP being able to do something that CF cannot, I challenge anyone to
    come up with an example.

    JR

    jonwrob Guest

  5. #4

    Default Re: Acessing another Datasource

    Lo atamo con alambre wrote:
    > I need to access a non-CF datasource, from another site called 'Peru', and
    > recover some information to insert in the datasource of 'Reconquista'.
    OK, but if you have access to the database server, you can create a CF
    datasource to connect to this database. It sounds like there's a bit of
    confusion on what a datasource really is. A datasource in CF is nothing
    but a pointer to a database server and a specific dataabse on that
    server, so if you have access information to the database server, you
    can point CF to it as long as you have the right database drivers.
    > That module can't be programmed in CF, because CF (as I know in this moment)
    > does not acess any other datasource format rather than CF's one, and the
    > datasource Im searching for (in Per?) is a common, MSAcess-driven datasource.
    Well, this is semi-true, but again if you have access to the database
    server you can point CF to it. Now if it's a Microsoft Access database
    file that's sitting on a remote server somewhere, that gets a bit hairy
    because Access isn't a database server, it's just a file. I'm sure
    there is some way to do this but it gets messy and the performance would
    be pretty horrible.

    Matt
    --
    Matt Woodward
    [email]mpwoodward@gmail.com[/email]
    Team Macromedia - ColdFusion
    mpwoodward *TMM* 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