Dreamweaver and Database manegement

I have created a new site, and I want to create a new SQL database for my site.
I know Dreamweavr has special panels for database related stuff. What exactly do I need to do
in Dreamweaver to define my database record layout and create the database.
Note that I have the XAMPP environment set up on my computer, and my local host (with the PHP and SQL servers) is running fine,
There is a related tutorial in Dreamweaver, but the tutorial imports the database it uses,  it does not define or create it.
I need to create a new database.   Thanks for the help!

Please repost this request on the Dreamweaver Application Development Forum - it's much more suited to these kinds of questions!
http://forums.adobe.com/community/dreamweaver/dreamweaver_development
I will say, however, that DW is not a database creation or management app.  For that you would need something like Navicat or PHPMyAdmin.

Similar Messages

  • Dreamweaver and Database Integration -  XML. Windows 7

    Hi
    Looking to see where the bounds of where Dreamweaver can assist me.
    I am looking to use Dreamweaver to develop a site that will need to manage the import of an xml feed from an external site to a database and then split some of the data to xslt for display and some of the other to R studio to calculate and create statistical analysis to be brought back to the website for display as calculate and graphical.
    Can Dreamweaver help much with handling data and queries or is there another adobe program that will assist with that as well?
    Most of the sites I create will be data intensive and while I can code websites I was looking to speed that section up to allow more time for data analysis.
    Sayth

    When you say Windows 7, do you mean Windows Server 2008 R2? Or are you talking about your development computer OS?
    Dreamweaver is essentially an HTML editor that has website management features. The project you describe requires back-end programming with a language like PHP, RUBY or ASP.NET.
    You don't mention which kind of server you are working with (Microsoft or LINUX) or what programming language you intend to work with.
    You can write PHP, javascript and ASP code in the Dreamweaver code editor, and DW will do some pretty good syntax checking, but DW is not a real IDE (integrated development environment) for any language except HTML. Also, although you can edit XML in Dreamweaver, there are other environments that work with XML better.
    So the short answer to your question is: yes, Dreamweaver could probably be used as your only (or primary) environment for building such a website, but that doesn't necessarily mean it's the best choice. But since you have not given us info about your server environment and programming language of choice, this is about all we can say.

  • Dreamweaver and Database management

    Now that I am an expert on static web pages, I am starting to learn how to create dynamic web pages.
    I have created the XAMPP environment on my PC and my localhost (with PHP and SQL servers) is running well.
    What I need to do is to create a new database for my site. I know that Dreamweaver has special panels for Database related stuff,
    but I am not able to find how I can define my record layout and create the database. I found a related tutorial on Dreamweaver on dynamic pages, but the tutorial imports its database, it does not create a new one,  (Also if anyone knows of related tutorials it would be very helpful).
    Thanks!

    Hi
    The first thing you need to do is create your database - To do this is log into your phpMyAdmin site through your browser, (how-to is described in your XAMPP documentation), and from there create your new database, giving it the name required from the tutorial (oddly enough you do this where it says create new database).
    As this is your first dynamic site from this point on, I would recommend importing the database tables from the tutorial and following that.
    Once you have more experience you could try creating your own database and tables etc. an excellent program for helping with this is the, 'MySQL Workbench',
    available from the MySQL website where you will also find a few tutorials on its use.
    Hope this helps.

  • Dreamweaver and Databases

    Do I have to create a database-driven site if I only want one of the pages in my site to be connected to a database for collecting user input?
    I've been through the DWCS3 classes through NHLC here in MI, and they only covered the scenario of a database driven site.
    My site has been up and running for over a year, and this is a "nice feature" request that my boss would like to see added now.
    Will it make a difference if it is only a company intranet site, and not a site on the www?
    I'm using a MSAccess 2003 database to interface with my DWCS3.
    If this issue has already been addressed somewhere else, please direct me.  I've done a search through the forums, and did not see anything.
    Thank you in advance for educating me.

    Do I have to create a database-driven site if I only want one of the pages in my site to be connected to a database for collecting user input?
    You want to collect information from visitors and save that information into a database?  That's not exactly what I would call a data-driven site, but it does require that you understand a) server scripting, and b) how to build/maintain a database.
    Will it make a difference if it is only a company intranet site, and not a site on the www?
    I'm using a MSAccess 2003 database to interface with my DWCS3.
    No.

  • Vista Dreamweaver and Access database

    I am trying to connect an Access database to an aspx-page in
    Dreamweaver and
    all I get is 'The program has stopped working'
    How can I avoid this?
    reidarT

    I am trying to connect an Access database to an aspx-page in
    Dreamweaver and
    all I get is 'The program has stopped working'
    How can I avoid this?
    reidarT

  • Issue with dreamweaver and PHP on WordPress theme

    Hi all
    Im trying to create a WordPress theme for my blog, however I keep getting this issue (CS6) "Dynamically-related files cannot be discovered because a testing server is not defined"
    I have been through my preferences and set everything how I think it should be set..
    anyone have any ideas?

    To work with dynamic sites like WordPress, you need a local testing server.
    WAMP for Windows
    http://www.wampserver.com/en/
    XAMPP for Windows
    http://www.apachefriends.org/en/xampp-windows.html
    XAMPP for Mac
    http://www.apachefriends.org/en/xampp-macosx.html
    MAMP for Mac
    http://www.mamp.info/en/downloads/index.html
    Setting up a PHP environment in Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html
    Building your first dynamic website – Part 1: Setting up your site and database connection
    http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt1.html
    Nancy O.

  • How to create a dynamic newsflash using dreamweaver and PHP

    Hi there,
       I would like to create a dynamic newsflash using dreamweaver and PHP in that the newsflash will be pulling information from a MySQL database. The newsflash should also have a link to view more information about the piece of news a user wants to know more about. Which tools do I need to use in dreamweaver and how's the procedure to go about that. Any advice is highly appreciated. Thanx in advance!

    I think you´ll need at least a MySQL table with the following columns:
    - id (primary key, int, auto_increment etc)
    - news_headline (varchar)
    - news_teaser (text)
    - news_content (text)
    What I´d personally add are columns such as:
    - news_date (date or datetime)
    - news_external_link (varchar), if a "read more..." link is supposed to navigate to an external URL rather than displaying the contens of the "news_contents" column.
    Based on such a MySQL table it should be easy to use Dreamweavers standard Server Behaviors to create the usual datalist.php, insert.php, update.php and delete.php documents, and there are numerous tutorials out there which will teach you how to do that.
    Am I right when assuming that you´ll also need to know how to automatically pull, say, the 5 most recent news records from the database ?

  • Dreamweaver asp Database Connections

    Am using Dreamweaver 8 (and the Missing Manual book) to set up dynamic webpages using asp and a database.
    Have used IIS to get my server set up at localhost and have downloaded files including mdb from site associated with Missing Manual book. Am on pages 700-701 of book.
    Have selected Custom Connection String using the connection name connNationalEx. Then connection string:
    "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\DWDynamic\nationalEx.mdb"
    Have selected "Using driver on this machine"
    Response to "Test" is "Connection successfully made" which is great!
    After OK I get the following message:
    "C:\inetpub\wwwroot\nationalex_root\Connections\connNationalEx.asp contains an invalid path" which is not so great!
    Have tried changing and matching capitals and/or no capitals. Prob something simple but I can't see it.
    Am doing a website for local Scouts on a voluntary basis and due to child protection laws they have asked for a log in system. Am happy with Dreamweaver and CSS but I may have bitten off more than I can chew here with log-ins! Any help appreciated with above.

    Perhaps there's a remnant of an open database? When I used
    Access
    Database, it would create an LDI or some thing similar when
    it opens an
    mdb that could, on occasion, remain open even after being
    close?
    This probably isn't the case but perhaps it can give you a
    clue.
    You may also want to try moving it so that it's not where it
    was and
    then connect to it in it's new location.

  • Error updating Dreamweaver and Extension Manager CS6 (Creative Cloud)

    Hello,
    I'm having troubles updating Dreamweaver and Extension Manager CS6 (Creative Cloud) on Macbook Pro with OS version 10.8.2. I get this error codes for both updates U44M1P7.
    The log files are generated.
    Here is an extract (last lines) of the dreamweaver log file (Adobe Dreamweaver CS6 12.2.0 04-16-2013.log):
    04/16/13 10:17:39:997 | [INFO] |  | OOBE | DE |  |  |  | 118619 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:39:997 | [INFO] |  | OOBE | DE |  |  |  | 118619 | Installer Operation: PayloadUninstaller
    04/16/13 10:17:39:997 | [INFO] |  | OOBE | DE |  |  |  | 118619 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:39:997 | [INFO] |  | OOBE | DE |  |  |  | 118619 | Session {A9861095-6F8C-11E2-B313-84E4FE4B0A47} modify request for AdobeCode: {CB894C92-6F8C-11E2-B313-9980D700C45F}
    04/16/13 10:17:40:024 | [INFO] |  | OOBE | DE |  |  |  | 118619 | Effective AdobeCode for: {CB894C92-6F8C-11E2-B313-9980D700C45F} is {CB894C92-6F8C-11E2-B313-9980D700C45F}
    04/16/13 10:17:40:070 | [INFO] |  | OOBE | DE |  |  |  | 118619 | PDB install manipulation failed
    04/16/13 10:17:40:098 | [INFO] |  | OOBE | DE |  |  |  | 118086 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:40:098 | [INFO] |  | OOBE | DE |  |  |  | 118086 | :: END TIMER :: [Payload Operation :{CB894C92-6F8C-11E2-B313-9980D700C45F}] took 101 milliseconds (0.101 seconds) DTR = 39.604 KBPS (0.0386757 MBPS)
    04/16/13 10:17:40:099 | [INFO] |  | OOBE | DE |  |  |  | 118086 | User specified overrideFile:
    04/16/13 10:17:40:101 | [INFO] |  | OOBE | DE |  |  |  | 118086 | The csu inventory was not updated for payload Adobe Dreamweaver CS6_12.2.0_AdobeDreamweaver12de_DELanguagePack 12.2.0.0 {CB894C92-6F8C-11E2-B313-9980D700C45F}, value of local var is -1
    04/16/13 10:17:40:101 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Calling the ROLLBACK custom action code for pre-install for payload Adobe Dreamweaver CS6_12.2.0_AdobeDreamweaver12de_DELanguagePack 12.2.0.0 {CB894C92-6F8C-11E2-B313-9980D700C45F}
    04/16/13 10:17:40:143 | [INFO] |  | OOBE | DE |  |  |  | 118086 | No operation.  We're done:
    04/16/13 10:17:42:147 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Total components installed: 0
    04/16/13 10:17:42:147 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Total components repaired: 0
    04/16/13 10:17:42:147 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Total components removed: 0
    04/16/13 10:17:42:147 | [WARN] |  | OOBE | DE |  |  |  | 118086 | DW050: The following payload errors were found during install:
    04/16/13 10:17:42:147 | [WARN] |  | OOBE | DE |  |  |  | 118086 | DW050:  - Adobe Dreamweaver CS6_12.2.0_AdobeDreamweaver12-mul: Patch already installed
    04/16/13 10:17:42:147 | [WARN] |  | OOBE | DE |  |  |  | 118086 | DW050:  - Adobe Dreamweaver CS6_12.2.0_AdobeDreamweaver12de_DELanguagePack: Install failed
    04/16/13 10:17:42:147 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Call PostSession Custom Hook
    04/16/13 10:17:42:147 | [INFO] |  | OOBE | DE |  |  |  | 118086 | ::START TIMER:: [Post session :{A9861095-6F8C-11E2-B313-84E4FE4B0A47}]
    04/16/13 10:17:42:148 | [INFO] |  | OOBE | DE |  |  |  | 118086 | In ReinstallSessionCloseProc
    04/16/13 10:17:42:148 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Custom action return code: 0
    04/16/13 10:17:42:148 | [INFO] |  | OOBE | DE |  |  |  | 118086 | :: END TIMER :: [Post session :{A9861095-6F8C-11E2-B313-84E4FE4B0A47}] took 0 milliseconds (0 seconds)
    04/16/13 10:17:42:148 | [INFO] |  | OOBE | DE |  |  |  | 118086 | :: END TIMER :: [Total Timer] took 17239 milliseconds (17.239 seconds) DTR = 1.16016 KBPS (0.00113297 MBPS)
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | -------------------------------------- Summary --------------------------------------
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 |  - 0 fatal error(s), 0 error(s)
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | OSX version: 10.8.3 
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 |
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | -------------------------------------------------------------------------------------
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 |
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | Exit Code: 7 - Unable to complete Silent workflow.
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | END - Installer Session
    04/16/13 10:17:43:150 | [INFO] |  | OOBE | DE |  |  |  | 118086 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Here is an extract (last lines) of the extension manager log file (Adobe Extension Manager CS6 6.0.5 04-16-2013.log):
    04/16/13 10:17:17:287 | [INFO] |  | OOBE | DE |  |  |  | 117458 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:17:287 | [INFO] |  | OOBE | DE |  |  |  | 117458 | Installer Operation: PayloadUninstaller
    04/16/13 10:17:17:287 | [INFO] |  | OOBE | DE |  |  |  | 117458 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:17:287 | [INFO] |  | OOBE | DE |  |  |  | 117458 | Session {7E13F325-CE11-42B3-BFD8-C15A8296EACB} modify request for AdobeCode: {7E13F325-CE11-42B3-BFD8-C15A8296EACB}
    04/16/13 10:17:17:316 | [INFO] |  | OOBE | DE |  |  |  | 117458 | Effective AdobeCode for: {7E13F325-CE11-42B3-BFD8-C15A8296EACB} is {7E13F325-CE11-42B3-BFD8-C15A8296EACB}
    04/16/13 10:17:17:364 | [INFO] |  | OOBE | DE |  |  |  | 117458 | PDB install manipulation failed
    04/16/13 10:17:17:388 | [INFO] |  | OOBE | DE |  |  |  | 117373 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: -1 =*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:17:388 | [INFO] |  | OOBE | DE |  |  |  | 117373 | :: END TIMER :: [Payload Operation :{7E13F325-CE11-42B3-BFD8-C15A8296EACB}] took 102 milliseconds (0.102 seconds)
    04/16/13 10:17:17:389 | [INFO] |  | OOBE | DE |  |  |  | 117373 | User specified overrideFile:
    04/16/13 10:17:17:391 | [INFO] |  | OOBE | DE |  |  |  | 117373 | The csu inventory was not updated for payload Adobe Extension Manager CS6_6.0.5_AdobeExtensionManager6.0All 6.0.5.0 {7E13F325-CE11-42B3-BFD8-C15A8296EACB}, value of local var is -1
    04/16/13 10:17:17:391 | [INFO] |  | OOBE | DE |  |  |  | 117373 | Calling the ROLLBACK custom action code for pre-install for payload Adobe Extension Manager CS6_6.0.5_AdobeExtensionManager6.0All 6.0.5.0 {7E13F325-CE11-42B3-BFD8-C15A8296EACB}
    04/16/13 10:17:17:433 | [INFO] |  | OOBE | DE |  |  |  | 117373 | No operation.  We're done:
    04/16/13 10:17:19:436 | [INFO] |  | OOBE | DE |  |  |  | 117373 | Total components installed: 0
    04/16/13 10:17:19:436 | [INFO] |  | OOBE | DE |  |  |  | 117373 | Total components repaired: 0
    04/16/13 10:17:19:436 | [INFO] |  | OOBE | DE |  |  |  | 117373 | Total components removed: 0
    04/16/13 10:17:19:437 | [WARN] |  | OOBE | DE |  |  |  | 117373 | DW050: The following payload errors were found during install:
    04/16/13 10:17:19:437 | [WARN] |  | OOBE | DE |  |  |  | 117373 | DW050:  - Adobe Extension Manager CS6_6.0.5_AdobeExtensionManager6.0All: Install failed
    04/16/13 10:17:19:437 | [INFO] |  | OOBE | DE |  |  |  | 117373 | Call PostSession Custom Hook
    04/16/13 10:17:19:437 | [INFO] |  | OOBE | DE |  |  |  | 117373 | :: END TIMER :: [Total Timer] took 3213 milliseconds (3.213 seconds) DTR = 4.97977 KBPS (0.00486306 MBPS)
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | -------------------------------------- Summary --------------------------------------
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 |  - 0 fatal error(s), 0 error(s)
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | OSX version: 10.8.3 
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 |
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | -------------------------------------------------------------------------------------
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 |
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | Exit Code: 7 - Unable to complete Silent workflow.
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | END - Installer Session
    04/16/13 10:17:20:438 | [INFO] |  | OOBE | DE |  |  |  | 117373 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Regards
    Jan

    In this log file I can see you are getting Error : U44M1P7 while updating the software
    This Error comes where language packs for software are not installed properly on the machine.
    I would suggest to update Adobe Application manager from
    Windows : http://www.adobe.com/support/downloads/detail.jsp?ftpID=4773
    MAC: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4774
    then try to install the update if still you are not able to update software and getting same error then uninstall all the Adobe software selecting remove prefernces.
    After uninstalling the software run the Adobe Cleaner tool(http://www.adobe.com/support/contact/cscleanertool.html) and remove the leftovers.
    Regards,
    Jatin Dembla

  • Re: what is difference between sap locking and database locking

    hi,
        what is difference between sap locking and database locking. Iam locked the table mara by using lock objects.
    But iam unable to unlock the mara table. I give u the coding. Please check it.
    REPORT zlock .
    CALL FUNCTION 'ENQUEUE_EZTEST3'
    EXPORTING
       MODE_MARA            = 'S'
       MANDT                = SY-MANDT
       MATNR                = 'SOU-1'.
    call transaction 'MM02'.
    CALL FUNCTION 'DEQUEUE_EZTEST3'
         EXPORTING
              mode_mara = 'E'
              mandt     = sy-mandt
              matnr     = 'SOU-1'.
    IF sy-subrc = 0.
      WRITE: 'IT IS unlocked'.
    ENDIF.

    Hi Paluri
    Here is the difference between SAP locks and Database locks, i will try to find the solution to your code.
    Regards
    Ashish
    Database Locks: The database system automatically sets database locks when it receives change statements (INSERT, UPDATE, MODIFY, DELETE) from a program. Database locks are physical locks on the database entries affected by these statements. You can only set a lock for an existing database entry, since the lock mechanism uses a lock flag in the entry. These flags are automatically deleted in each database commit. This means that database locks can never be set for longer than a single database LUW; in other words, a single dialog step in an R/3 application program.
    Physical locks in the database system are therefore insufficient for the requirements of an R/3 transaction. Locks in the R/3 System must remain set for the duration of a whole SAP LUW, that is, over several dialog steps. They must also be capable of being handled by different work processes and even different application servers. Consequently, each lock must apply on all servers in that R/3 System.
    SAP Locks:
    To complement the SAP LUW concept, in which bundled database changes are made in a single database LUW, the R/3 System also contains a lock mechanism, fully independent of database locks, that allows you to set a lock that spans several dialog steps. These locks are known as SAP locks.
    The SAP lock concept is based on lock objects. Lock objects allow you to set an SAP lock for an entire application object. An application object consists of one or more entries in a database table, or entries from more than one database table that are linked using foreign key relationships.
    Before you can set an SAP lock in an ABAP program, you must first create a lock object in the ABAP Dictionary.

  • Some error in cluster alertlog but the cluster and database is normal used.

    hi.everybody
    i used RAC+ASM,RAC have two nodes and ASM have 3 group(+DATA,+CRS,+FRA),database is 11gR2,ASM used ASMlib,not raw.
    When i start cluster or auto start after reboot the OS,in the cluster alertlog have some error as follow:
    ERROR: failed to establish dependency between database rac and diskgroup resource ora.DATA.dg
    [ohasd(7964)]CRS-2302:Cannot get GPnP profile. Error CLSGPNP_NO_DAEMON (GPNPD daemon is not running).
    I do not know what cause these error but the cluster and database can start normal and use normal.
    I do not know whether these errors will affect the service.
    thanks everybody!

    anyon has the same question?

  • I have just upgraded from CS 6 (Dreamweaver) and now when I click on a picture on a web page in Dreamweaver it doesn't go to the folder where the photo is stored anymore.  If this continues I'll have to go back to CS 6 as I have to put in alot of photos.

    I have just upgraded from CS 6 (Dreamweaver) and now when I click on a picture on a web page in Dreamweaver it doesn't go to the folder where the photo is stored anymore.  If this continues I'll have to go back to CS 6 as I have to put in alot of photos.

    I am using dw cc and I just double click picture I want to change in dreamweaver cc and my image folder opens, select new photo and then it updates and I am good to go, I am using a mac

  • Problem with dreamweaver and Flash

    Hi, maybe someone can help me, i have any problem with
    dreamweaver and flash, i have a page and i have a menu and
    sub-menu, and the same page i have a category en flash 550 x 700 (
    photography and more... ) but when the menu to unfold
    the menu to see under flash and it cant see ( sorry my
    english is bad.... i hope you can understand me, and help me.. )
    i dont now why always flash ever stay up, or first, and
    another information under flash... this a problem... if you have
    menus...
    thanks.... have nice day.....

    This is a drawback of using flash or any other active
    content. By default, all active content including flash will
    display over every other content and thats why your menu stays
    under the flash movie. Some people make the flash background
    transparent to show content under the flash movie, but that will
    not work for menu items.
    I would suggest that you make the menu such that it does not
    overlap with the flash movie.

  • Performance with MySQL and Database connectivity toolbox

    Hi!
    I'm having quite some problems with the performance of MySQL and Database connectivity toolbox. However, I'm very happy with the ease of using database connectivity toolbox. The background is:
    I have 61 variables (ints and floats) which I would like to save in the MySQL-database. This is no problem, however, the loop time increases from 8ms to 50ms when using the database. I have concluded that it has to do with the DB Tools Insert Data.vi and I think that I have some kind of performance issue with this VI. The CPU never reach more the 15% of its maximum performance. I use a default setup and connect through ODBC.
    My questions are:
    1. I would like to save 61 variables each 8-10ms, is this impossible using this solution?
    2. Is there any way of increasing the performance of the DB Tools Insert Data.vi or use any other VI?
    3. Is there any way of adjusting the MySQL setup to achieve better performance?
    Thank you very much for your time.
    Regards,
    Mattias

    First of all, thank you very much for your time. All of you have been really good support to me.
    >> Is your database on a different computer?  Does your loop execute 61 times? 
    Database is on the same computer as the MySQL server.
    The loop saves 61 values at once to the database, in one SQL-statement.
    I have now added the front panel and block diagram for my test-VI. I have implemented the queue system and separate loops for producer and consumer. However, since the queue is building up faster then the consumer loop consumes values, the queue is building up quite fast and the disc starts working.
    The test database table that I add data to is created by a simple:
    create table test(aa int, bb char(15));
    ...I'm sure that this can be improved in some way.
    I always open and close the connection to the database "outside the loop". However, it still takes some 40-50 ms to save the data to the database table - so, unfortunatly no progress to far. I currently just want to save the data.
    Any more advise will be gratefully accepted.
    Regards,
    Mattias
    Message Edited by mattias@hv on 10-23-2007 07:50 AM
    Attachments:
    front panel 2.JPG ‏101 KB
    block diagram.JPG ‏135 KB

  • I just want itunes music and database to be on external HD not internal

    What am I doing wrong. I have itunes music library on my external HD and my itunes preferences say that my itunes music folder location is just that. It's about 41 GB. Ok, but why on my system drive is there an itunes folder in the default user music folder and it is 7 GB and there are certain titles in there that did not make it to the external. The database files are in there as well. Shouldn't everything be located in the external itunes music folder including the database files ? How do I have itunes automatically update the external HD folder and put the database files in there as well and stop using the internal system drive for storage and database.

    I did that a while ago. But now it seems there are 7 GB of stray files. Is there a sync feature that moves only the itunes files that are outside the designated itunes folder, in my case they are living on the system drive for some reason...

Maybe you are looking for

  • "Error 7" LV 8.5

    I am receiving an "Error 7 occurred at Open File +.vipen File" while running a GUI. Typically if I have a problem like this, it is because one of my hard drives has lost connection. This is not the case this time. We have not changed anything that we

  • Connect iPod to Sony television

    How can I connect my iPod touch to my television

  • Is there a way to migrate AD users to different domain?

    Hello SharePoint Fam, I have a 10,000 user environment and these users are spread across 15 different domains.  Our data/network team are beginning to migrate and consolidate our environment down to one domain.  We did a test and had them migrate a c

  • New to SAP

    Hi, I am new to SAP. I have 5 years of experience in Java. I am having the basic kowledge of SAP PI Is this a good tool to start with in SAP or can i go with SAP HANA Basically i am looking to get Expertise on some tool where coding doesnt play big.

  • Getting following error on starting OC4J

    Hi, I'm getting following error when I'm trying to start OC4J. D:\Bkup\oc4j10i_extended\j2ee\home>rem cd ..\.. Starting OC4J... java version "1.4.1_03" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_03-b02) Java HotSpot(TM) Client VM (