Dreamweaver & DSNless connection

Dreamweaver & DSNless connection
I am fairly familiar with Dreamweaver and creating static web
pages. However this is my first attempt at a dynamic webpage and I
have hit several hurdles.
First I setup a DSN connection...but was later told by my
host that a DSNless connection would work better. So that is what I
am not working on.
They told me to use the following script
Set oConn=Server.CreateObject("ADODB.Connection")
filePath = Server.MapPath("Your Access DB File")
oConn.Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source="
+filePath)
So I did that I entered this script into the Database/Custom
Connection String/Connection string in Dreamweaver CS3
Set oConn=Server.CreateObject("ADODB.Connection"); filePath =
Server.MapPath("echohockeydb.mdb");
oConn.Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source="
+\echohockey\Database)
When I click "Test" I get the following error
Unknown error 0x800A0BB9
Arguements are of the wrong type, are out of acceptable
range, or are in conflict with one another.
Since I am just learning, I don't know if I entered the
information in the script wrong, or if my problem lies elsewhere.
The really frustrating part is that my page is uploaded and it
works, but I need to change the data that is on the page. When I go
back to add/edit the record sets it tells me that it cannot find
the record set or the database connection.
Is the problem obvious? Do you need mor info to troubleshoot?
Sorry for this question, I am teetering on the edge of being out of
my league with this project.
THANKS!

"Dante2004" <[email protected]> wrote in
message
news:[email protected]...
> Still working on this...
>
> Learning more as I go...I have two connection files for
the DSNless
> connection
>
> connECHOHockey.asp
> <%
> Set oConn=Server.CreateObject("ADODB.Connection")
> filePath = Server.MapPath("Database\echohockeydb.mdb")
> oConn.Open("Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=" +filePath)
> %>
>
> And connECHOHockey2.asp
> <%
> ' FileName="Connection_ado_conn_string.htm"
> ' Type="ADO"
> ' DesigntimeType="ADO"
> ' HTTP="true"
> ' Catalog=""
> ' Schema=""
> Dim MM_connECHOHockey2
> MM_connECHOHockey2_STRING = Driver={Microsoft Access
Driver (*.mdb)}
> Dbq=C:\Inetpub\wwwroot\echohockey\Database\echohoc
keydb.mdb;
> %>
>
> I figured out why the pages that work, are working. They
are referencing
> connECHOHockey.asp The problem is, that when I goto
Application|Databases
> in
> DW, it only lists connECHOHockey2.asp When I go into the
> connECHOHockey2.asp
> database to add bindings, it says that it is unable to
select tables with
> this
> connection. If I goto databases and test the connection
I get this
> error...
>
> "Format of the initialization string does not conform to
the OLE DB
> specification".
>
> I haven't gotten this error before. Not sure if this is
progress or not.
Unless the forum mangled your code (doesn't seem like it
because
connECHOHockey looks okay)
You are missing quotes in the MM_connECHOHockey2_STRING
connectionstring
MM_connECHOHockey2_STRING = "Driver={Microsoft Access Driver
(*.mdb)};Dbq=C:\Inetpub\wwwroot\echohockey\Database\echohoc
keydb.mdb;"
The problem with MapPath in a dreamweaver connectionstring is
that
dreamweaver doesn't execute that function, you can try fixing
this by
defining the connectionstring twice, first with the full path
of the
database on your local machine (this is what dreamweaver will
use), and
second with the mappath, it'll override the connectionstring
when the page
is executed by the server, but not by Dreamweaver because it
only looks for
the first string.
<%
' FileName="Connection_ado_conn_string.htm"
' Type="ADO"
' DesigntimeType="ADO"
' HTTP="true"
' Catalog=""
' Schema=""
Dim MM_connECHOHockey2
MM_connECHOHockey2_STRING = "Driver={Microsoft Access Driver
(*.mdb)};Dbq=C:\Inetpub\wwwroot\echohockey\Database\echohockeydb.mdb;"
MM_connECHOHockey2_STRING = "Driver={Microsoft Access Driver
(*.mdb)};Dbq="
& Server.MapPath("Database\echohockeydb.mdb") & ";"
%>
Joris

Similar Messages

  • ODBC DSNless connection

    I created some ASP pages for a database and while onmy local
    machine everything was good.
    When uploaded to my host the connection failed and they
    suggested a DSNless connection, i reasearched it on the net and
    there were several tutorials but none of them worked.
    The current connection is
    // FileName="Connection_odbc_conn_dsn.htm"
    // Type="ADO"
    // DesigntimeType="ADO"
    // HTTP="false"
    // Catalog=""
    // Schema=""
    var MM_tracks_STRING = "dsn=tracks;"
    and the link on the ASP pages is
    <%@LANGUAGE="JAVASCRIPT"%>
    <!--#include file="Connections/tracks.asp" -->
    <%
    var rstracks_cmd = Server.CreateObject ("ADODB.Command");
    rstracks_cmd.ActiveConnection = MM_tracks_STRING;
    rstracks_cmd.CommandText = "SELECT * FROM tracks ORDER BY
    Suburb ASC";
    rstracks_cmd.Prepared = true;
    var rstracks = rstracks_cmd.Execute();
    var rstracks_numRows = 0;
    %>
    Can anyone help me modify this to get it working?

    replace this:
    <!--#include file="Connections/tracks.asp" -->
    With this:
    <%
    Dim MM_tracks_STRING
    MM_tracks_STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data
    Source=C:\SomeFolder\SomeDatabase.mdb;"
    %>
    Be sure to keep the MM_tracks_STRING = line on one line
    Ken Ford
    Adobe Community Expert
    Fordwebs, LLC
    http://www.fordwebs.com
    "XaeroRamirez" <[email protected]> wrote in
    message news:eto73e$29c$[email protected]..
    >I created some ASP pages for a database and while onmy
    local machine everything
    > was good.
    > When uploaded to my host the connection failed and they
    suggested a DSNless
    > connection, i reasearched it on the net and there were
    several tutorials but
    > none of them worked.
    > The current connection is
    > // FileName="Connection_odbc_conn_dsn.htm"
    > // Type="ADO"
    > // DesigntimeType="ADO"
    > // HTTP="false"
    > // Catalog=""
    > // Schema=""
    > var MM_tracks_STRING = "dsn=tracks;"
    >
    > and the link on the ASP pages is
    > <%@LANGUAGE="JAVASCRIPT"%>
    > <!--#include file="Connections/tracks.asp" -->
    > <%
    > var rstracks_cmd = Server.CreateObject
    ("ADODB.Command");
    > rstracks_cmd.ActiveConnection = MM_tracks_STRING;
    > rstracks_cmd.CommandText = "SELECT * FROM tracks ORDER
    BY Suburb ASC";
    > rstracks_cmd.Prepared = true;
    >
    > var rstracks = rstracks_cmd.Execute();
    > var rstracks_numRows = 0;
    > %>
    >
    > Can anyone help me modify this to get it working?
    >

  • Is there a list of hosting companies Dreamweaver can connect to? Database wise

    I need to know if Dreamweaver can connect to certain databases. I don't want to waste my money just to find out, so I came here. I need to know if there is so I can go with that hosting company instead.

    Jean90p wrote:
    Once I get everything sorted out on a 'local' level I'll then purchase some remote server space and transfer the files to it. Then if I need to update the database I'll just use the remote version of phpMyadmin which should come with the hosting package.
    Yea that's what I meant what hosting companies can Dreamweaver connect to? I'm using wamp locally but I've tried to connect to go-daddy database and that was a bust so now I'm looking for other hosting providers that allow me to connect to their databases from Dreamweaver.....Or is there any reason to do that at all?
    No reason to want to connect to a remote database from DW in my opinion. Like I said I do all the setting up locally then transfer files over to a remote host and connect using the database connection details supplied by the host. If the connection details from the host are correct then all you should need to do is replace your local connection details in the database connection file with the remote ones - everything should work like a dream - obviously sometimes it doesn't but that's because some web-hosts make you jump through hoops to set anything up, for instance BT in the UK are total crap in my opinion stay clear of their convoluted set up if youre in the UK - I'm sure others have had a great experience using BT - go with a small company - large companies couldn't give a shite about their clients.

  • I cannot create a new business catalyst site with Dreamweaver CC 2014. The error message states that Dreamweaver cannot connect with server, try again later. How can I fix this problem?

    I cannot create a new Business Catalyst site with Dreamweaver CC 2014 (Mac). The error message states that Dreamweaver cannot connect with server, try again later. In addition, I am also unable to load remotely a previously created Business Catalyst site as it says there is something wrong with my username or password. However when I put my password in and press test connection, it says it has connected successfully. What is going wrong and how can I fix this problem?
    Thanks

    Hi Ozy08,
    Can you try the solutions mentioned in Re: Can't Login to Business Catalyst within Dreamweaver CS6?
    If you still have problems, and you have a purchased version of DW CC, send me your Adobe ID, location, and contact details over a private message. Click my picture and use the message option.
    Thanks,
    Preran

  • Dreamweaver not connecting to mysql?

    I have set up a database in MAMP which Dreamweaver was connected to and all worked fine. I have now copied that database in phpmyadmin via my hosting server and also uploaded all my files to my current (live) site and im now having connection problems, in the database panel in Dreamweaver there is a database present but no tables, when i open the mysql connection dialog box and try to select database or test it, it comes up with - 'unidentified error has occured'
    Does anyone have any idea where i have gone wrong?

    Ness_quick wrote:
    I have set up a database in MAMP which Dreamweaver was connected to and all worked fine. I have now copied that database in phpmyadmin via my hosting server and also uploaded all my files to my current (live) site and im now having connection problems, in the database panel in Dreamweaver there is a database present but no tables, when i open the mysql connection dialog box and try to select database or test it, it comes up with - 'unidentified error has occured'
    Does anyone have any idea where i have gone wrong?
    Humm..Im not sure why you are looking in the Dreamweaver database panel for something on the remote site?
    All you should have needed to do was export the database to a .sql file from your local copy of phpMyAdmin. Open the remote copy of phpMyAdmin and import it.

  • Using Password with DSNless connection to Access DB

    Has anyone actually used a password to connect to a local Access database? I keep getting the "Not a valid password" error.
    I have created an application for distribution and do not want to allow the users to change my database, so I put a password on it. Because the users can create new databases with the program, I would like to use a DSNless connection to allow the user to change the databases easily.
    I have successfully worked with the database through a DSN connection with the password, and with the DSNless connection without a password, but am unable to get in with a DSNless connection and a password.
    I have read as many postings and topics using the main key words as I can find in the APIs, forums, tutorials, bug databases, etc., but this topic is not addressed.
    I have tried as many permutations on the advice I did find, and nothing works so far. Here are a few of the tries I made:
    String theurl = "jdbc:odbc:Driver={MicroSoft Access Driver (*.mdb)}; DBQ=c:\\demo\demo.mdb;Password=\"demo\"";
    con = DriverManager.getConnection(theurl)
    String userid = "";
    String password = "demo" 
    String theurl = "jdbc:odbc:Driver={MicroSoft Access Driver (*.mdb)};DBQ=c:\\demo\demo.mdb;"
    con = DriverManager.getConnection(theurl,userid,password);What am I doing wrong?
    I would appreciate any help I can get.

    I'm sorry, I should have posted my entire code. As you can see, I have included the Class.forName method. The password that I set on was on the database; I did not create any users. The question about copying a database vs. creating a new one is moot here, because this database was created independently from any others. (However, you are correct in that I am actually copying a "Master" version of the database, not actually creating a totally new one.)
    Here is my code:
    import java.sql.*;
    import java.util.*;
    import sun.jdbc.odbc.*;
    public class testPassword {
      private String theurl;
      private String user = "";
      private String password = "";
      private Connection con;
      private Statement stmt;
      public testPassword() {
        try {
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
              theurl = "jdbc:odbc:Driver={MicroSoft Access Driver (*.mdb)};" +
                "DBQ=c:\\demo\\demo.mdb;Password=\"demo\"";
          boolean found = false;
          con = DriverManager.getConnection(theurl);
          try {
           stmt = con.createStatement();
           String pword = "";
            String query = "SELECT password FROM SysInfo";   // system Info
            ResultSet rs = stmt.executeQuery(query);
            while (rs.next()) {
              pword = rs.getString("password");
            rs.close();
            stmt.close();
            con.close();
            System.out.println("Inner Password: " + pword);
            System.exit(0);
          } catch (Exception e) {
              System.out.println("Inner failed " + e.toString());
              System.out.println("Outer Password: " + password);
        } catch (Exception ex) {
            System.out.println("Outer failed " + ex.toString());
            System.out.println("URL: " + theurl);   
      public static void main(String [] args) {
           testPassword app = new testPassword();
    }BTW, for those replies that I keep seeing all over the forum that say that you MUST create a DSN, that is NOT correct. Please do a search on "dsnless" or "dsn-less" and you will see that it is totally feasible.

  • Dreamweaver sudenly stopped connecting to website, fine one day then cannot connect the next. I can connect using CUTEFTP any suggestions what has stopped dreamweaver from connecting?

    Dreamweaver suddenly stopped connecting to website, fine one day then cannot connect the next. I can connect using CUTE FTP any suggestions what has stopped Dreamweaver from connecting?

    Have you tried clearing DW's program cache yet? That's usually my first step if something "just started happening"...
    Deleting a corrupted cache file
    Server updates can cause DW to need a setting change. Have you already tried toggling Use Passive FTP in your site settings yet?
    Has anything changed on your local network, like an update to a firewall?
    If you are connected via wireless router, a low likelihood but possible thing to test would be a wireless router problem. Try connecting the computer directly to your modem, bypassing the wireless router (if you aren't using an all in one modem/router setup) to see if that makes any difference.

  • Dreamweaver PHP connection vs. My manual connection?

    I have seen what Dreamweaver (I am using CS6) can do for PHP development, and find it to be a great help. I am trying to understand how to work with files that I have hand coded and created a database connection via constants that live in a config file. My database class uses them as the values for its connection. I see that when you create a database in Dreamweaver you get a file that seems to be what dreamweaver needs to recognize it as a connection. Should I leave this inplace and try to work with what I have or should I try to remove or configure it to be the only connection? It does not seem to hurt anyting to leave them both but I don't want to be missing out on features because I am not using best practices. I can't seem to find any documentation on how to combine this Dreamweaver style connection with my manual connection. The code Dreamweaver makes is like this for it's database connection
    <?php# FileName="Connection_php_mysql.htm"# Type="MYSQL"# HTTP="true"$hostname_photo_gallery_dw = "localhost";$database_photo_gallery_dw = "grocery_land_db";$username_photo_gallery_dw = "gladmin";$password_photo_gallery_dw = "bw46210";$photo_gallery_dw = mysql_pconnect($hostname_photo_gallery_dw, $username_photo_gallery_dw, $password_photo_gallery_dw) or trigger_error(mysql_error(),E_USER_ERROR); ?>
    The way my PHP config file that my class uses it configured is like so:
    <?php     // Database Constants    defined('DB_SERVER') ? null : define("DB_SERVER", "localhost");    defined('DB_USER')   ? null : define("DB_USER", "gladmin");    defined('DB_PASS')   ? null : define("DB_PASS", "bw46210");    defined('DB_NAME')   ? null : define("DB_NAME", "grocery_land_db");?>
    Thanks for any knowledge.

    Your existing approach will  work fine going forward - the only difference you will see between the two is that the DW approach actually MAKES a persistent connection with the database (using the mysql_pconnect() command) and throws an error if that connection fails. I assume you are doing that later in your code....

  • Contribute 3 and Dreamweaver 8 Connection Issues

    Hello,
    I'm having issues finalizing my site definition at the
    "Contribute" stage in Dreamweaver.
    When I test the connection from Dreamweaver's "Remote Info"
    stage, Dreamweaver successfully connects to the main directory: "
    http://domain.edu" (domain.edu), where
    I upload files to the main site (not connected to Contribute), but
    I want to connect contribute to a mini site in a subdirectory of
    the main site - "
    http://domain.edu/folder/folder".
    I'm stuck at the point where I click "Administer Site in
    Contribute" in the "Site Definition" dialog box. This is the first
    time I've set up a site in Dreamweaver with Contribute
    compatibility and a remote connection, so I have not run into this
    before.
    Everything was going fine until the "Contribute" panel.
    The Site root URL in the dialog box originally pointed to the
    index file of the existing mini site sitting on the server: "
    http://domain.edu/folder/folder/index.htm".
    When I click the "Test" button, I keep getting the error
    message:
    "Dreamweaver could not connect to the remote server... Please
    fix the remote connection before continuing"
    So, I changed the Site root URL to point to the root folder
    of the mini site:"
    http://domain.edu/folder/folder/index.htm"
    Then I got this error message:
    "Dreamweaver could not find a page at the specified site root
    URL"
    I changed it back to the original URL and went back to the
    "Remote Info" dialog. I thought that maybe the problem was that I
    was supposed to change the host directory to "domain/folder/folder"
    (from "domain") to reflect the exact folder that the mini site was
    stored in, but when I did, I got an access denied error.
    I am at a complete loss, please help...
    I am using:
    Dreamweaver 8
    Contribute 3
    Windows XP
    Has anyone gotten an answer to this problem? I have seen many
    threads in both the Dreamweaver and Contribute forums, but nothing
    looked like a solution or explanation of why this occurs. Please
    Help. I would like to use this tool throughout our college
    campuses, but I am loosing faith in this product. I know that If
    I'm having trouble, novice users will completely reject this
    technology...
    -Ena

    OK, Now I'm REALLY confused
    I gave up on trying to connect Contribute to my website
    through Dreamweaver. I figured I'd go back to Contribute and see if
    I could get the connection directly from Contribute. Somehow, It
    worked. I think I went to Edit > My Connections > Create...
    > and entered my FTP information and it worked! I still cannot
    connect through DW however.
    So far, this has allowed me to continue with setting up this
    site with Contribute. I'm still really confused as to what the
    problem is with Dreamweaver and Contribute working together.
    I'm going to go back and make sure that I can repeat whatever
    I did to get it working. The only thing worse than not being able
    to get something to work is stumbling upon the solution and not
    knowing how you did it
    -Ena

  • Adobe Dreamweaver FTP connection doesn't work with german "Umlaut" like "ö" in the severadress

    Hi
    Today I tried to establish a FTP connection to the serveradress "ftp.möbelverwandlung.com", but I get the error message that the program couldn't connect to the host. As Dreamweaver works perfectly with other serveradresses and I managed to establish a connection to "ftp.möbelverwandlung.com" with other programs, I think that the problem is the german "Umlaut" "ö". Did anyone recognize the same problem and does someone know a solution?
    Thank you very much for your help

    Here is the English translation of your previous post -
    Hello Maximilian,
    I got a even looked at my provider. Usually there must pay the original domain for the agreed period and agree a new. However, they show a accommodating for so short "duration" of a few hours like you. Try to contact your ISP phone support.
    MfG
    Hans-Günter
    Anyhow, I think you have covered the options!

  • Can Dreamweaver CS5 connect to MySQL via ODBC?

    I am unable to make a direct connection to an external MySQL database because most hosting provider does not allow this type of connection due to security reasons. I am however able to make an ODBC connection to the database (which I am currently using to connect filemaker to our MySQL database).
    How can I tell Dreamweaver CS5 to connect via the ODBC driver so I can see the MySQL content in my Dreamweaver project?
    I am on a Mac running OS X 10.6.4.

    GeorgeRudd wrote:
    How can I tell Dreamweaver CS5 to connect via the ODBC driver so I can see the MySQL content in my Dreamweaver project?
    You can't - at least not if you want to use Dreamweaver's server behaviors. Dreamweaver uses the original PHP MySQL extension. If you want to connect in any other way, you need to hand code everything yourself.
    On the other hand, if you want to see the contents of your remote database in Dreamweaver, define your remote server as the testing server. Dreamweaver uploads a hidden folder to the remote server to connect to the database. Because the script is on your remote server, it's local to the MySQL database, so gets round the security issue. It then sends the details to your local computer.
    A better solution, though, is to establish a local testing environment. It's more responsive and much more secure. http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html.
    By the way, the failure to get a reply is due, in part, to posting your question in the wrong forum. The forum for issues related to PHP/MySQL and other server-side technologies is http://forums.adobe.com/community/dreamweaver/dreamweaver_development.

  • Dreamweaver FTP connection settings (CS5)

    I am wondering if anyone can help me with my issue I am having. I am running a big website and have been using Dreamweaver CS4 in the past and that worked like a charm so I decided to upgrade to CS5 and some things got weird. When entering in my servers I enter in all of my settings that I had on my past version using ftp then my domain and port 21. I enter in the correct username and password but when it tries to connect it says it fails.
    Any suggestions??
    Am I supposed to use sftp now??
    -Tim

    Without knowing your FTP login credentials (Don't give them out here of course) it's hard to say. It's more likely a user error.
    The best thing to do is login to your hosting provider's control panel and look for your FTP login and campare the info.
    The obvious woud be
    User error - missing something when typing in crendtials ex: server, path or no path to dir example htdocs/html/
    password/user login
    Server down try again
    Internet connection down try again

  • Dreamweaver CS3 Connecting To SQL Express 2005

    Hi Guys,
    I'm having problems connecting
    Dreamweaver CS3 to
    SQL Express 2005, the error message that comes back is not
    very helpful, "An Unidentified Error has Occurred"
    Have any of you successfully connected
    Dreamweaver CS3 to
    SQL Express 2005 ?
    Thanks
    Jay

    > I'm having problems connecting
    Dreamweaver CS3 to
    SQL Express
    > 2005, the error message that comes back is not very
    helpful, "An
    > Unidentified Error has Occurred"
    >
    > Have any of you successfully connected
    Dreamweaver CS3 to
    SQL
    > Express 2005 ?
    Yes, the connection string is not dependant upon the software
    used to create
    the website. Here's a couple of examples, or you can find
    more at
    http://www.connectionstrings.com:
    Provider=sqloledb;Data Source=computer_name_or_IP;Initial
    Catalog=database_name;UID=username;PWD=password
    DRIVER={SQL
    Server};SERVER=Computer_name\instance_name;DATABASE=database_name;UID=username;PWD=passwo rd

  • DSNLess Connection to OracleDB v8.1.7

    Hi, I encounter problems in using DSNless approach to connect to Oracle DB. My program is using JDK1.1.8, Oracle DB version 8.1.7. Please help to identify the problem and provide solution to it.
    Below is the code used and the error message
    Trial A:
    Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    con = DriverManager.getConnection("jdbc:oracle:thin:@IP Address:port:Oracle_SID", uid, pwd);
    Error --> java.sql.SQLException: Protocol violation
    Trial B:
    Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    con = DriverManager.getConnection("jdbc:oracle:thin:@hostname:port:Oracle_SID", uid, pwd);
    Error --> java.sql.SQLException: hostname
    Trial C:
    Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
    con = DriverManager.getConnection("jdbc:oracle:thin:uid/pwd@hostname:port:Oracle_SID");
    Error --> java.sql.SQLException: hostname

    Hi,
    The "protocol violation' is message that is thrown when Oracle cant throw a more
    specific message.
    Please try following code, but before that please include classes12.zip in ur classpath. This file contains the oracle thin driver.
    Connection connection = null;
    try {
    Class.forName("oracle.jdbc.driver.OracleDriver");
    String url = "jdbc:oracle:thin:@hostname:port:Oracle_SID"
    connection = DriverManager.getConnection(url, "dbName", "password");
    }catch (Exception e){
    e.printStackTrace();
    good luck ...san :-)

  • Dreamweaver wont connect to mysql

    Hello,
    I am using Yahoo for my hosting service. They do not allow
    remote access to the database on there server. B/c I rely alot on
    Dreamweaver mx alot for building php pages to allow my cust to
    access the database I need to set up a mysql connection in
    Dreamweaver. I have installed mysql and php on my computer. I built
    a database w/ a simple table just to have to test the connection.
    Anyway, when I try to connect thru Dreamweaver in the database
    panel it gives me an unknown error. I cant figure out why! I thank
    any one who can assist me w/this.
    Thank you,
    Manda

    SexyManda85 wrote:
    > Hello,
    > I am using Yahoo for my hosting service. They do not
    allow remote access to
    > the database on there server. B/c I rely alot on
    Dreamweaver mx alot for
    > building php pages to allow my cust to access the
    database I need to set up a
    > mysql connection in Dreamweaver. I have installed mysql
    and php on my computer.
    > I built a database w/ a simple table just to have to
    test the connection.
    > Anyway, when I try to connect thru Dreamweaver in the
    database panel it gives
    > me an unknown error. I cant figure out why! I thank any
    one who can assist me
    > w/this.
    http://search.cc.yahoo.com/search?ui_mode=question&property=Yahoo%21+GeoCities&question_bo x=mysql+localhost%3F&Ask=Ask
    Mick

Maybe you are looking for

  • How to automate the adding of check-box along with each numbered item in Framemaker file ?

    I tried using the wingdings font as check-box. But I don't want to use it manually every time. I want to have it as a style part of my procedure style (numbering style).   I need the check-box along with each numbered item. Whenever I apply my number

  • HP OMNI 10 Windows 8.1

    Hi. I accidently/on purpose deleted eprint on my HP OMNI 10 tablet.  Is there anyway to get it back?

  • Mail adapter

    Hi. I have the following scenario: I want to send an e-mail from SAP ERP, using XI mail adapter. I would like to ask the experts if what I'm doing is correct: - In the Integration Directory I defined the following objects: 1) Business system "IED_200

  • Reports required from SAP

    Hi experts,    Please advise how i can get following reports from SAP: Cash Book Bank Book Journal Register Purchase Register General Ledger Vendor Ledger Regards, Samar

  • Error message 'Employee ID Missing'

    You receive error message  'Employee ID Missing' while assigning credit card expenses in an Expense Report and then the user is not able to save the Expense Report. This error message "Employee ID missing" unfortunately will appear when you open some