Announcement

Collapse
No announcement yet.

Will Actinic work for me?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Will Actinic work for me?

    I currently am looking at the evaluation version of Actinic Business / Audio store to use for setting up a website to sell cds. My database is set up in Access with various tables for main cd details, tracks, categories etc. I can see how to link in my main catalogue by using the external link but as the categories and tracks for each cd are stored in separate files to the main product details I can not see how to link in the tracks to fit it all together. Can anyone give me any advice here?

    #2
    One way of doing what you require is to write a query in Access that joins several fields (your track lists) into one field with appropriate formatting along with all the other actinic data to create a new table then use that table to link to Actinic.

    In access, the query syntax to select data and put it into another table is like this:

    SELECT *
    FROM mySourceTable
    INTO myTargetTable
    WHERE 1;

    Using field concatenation in the SELECT part you could do something like

    SELECT "!!<" + Track1 + "<br>" + Track2 + "<br>" + Track3 + ">!!" AS TrackList (or probably [Full Description])

    Hope this makes some kind of sense
    Matt
    Actinic User since v.3

    Custom Actinic Site Specialist:
    <a href="http://www.glowsticksdirect.co.uk/">GlowSticksDirect.co.uk</a>
    <a href="http://www.digishopdirect.co.uk/">DigiShopDirect.co.uk</a>
    <a href="http://www.calibreshopping.co.uk/">CalibreShopping.co.uk</a>

    Comment


      #3
      Many thanks for pointing me on my way. Think I have just about solved it. Found a great example on

      http://www.rogersaccesslibrary.com/O...p#Hookom,Duane

      Comment


        #4
        Undefined function

        HELP

        almost there but getting an error message

        Undefined function 'Concatenate' in expression

        what am I doing wrong?

        SELECT catalog.catalog_id, catalog.catalog_id, Concatenate("SELECT track_name FROM tblTracks WHERE catalog_id =" & [catalog_id]) AS track_name
        FROM [catalog];

        Comment


          #5
          Did you copy the contents of the basConcatenate in the Modules section over to your database. That modules file contains the Concatenate function used in the example.
          Matt
          Actinic User since v.3

          Custom Actinic Site Specialist:
          <a href="http://www.glowsticksdirect.co.uk/">GlowSticksDirect.co.uk</a>
          <a href="http://www.digishopdirect.co.uk/">DigiShopDirect.co.uk</a>
          <a href="http://www.calibreshopping.co.uk/">CalibreShopping.co.uk</a>

          Comment


            #6
            Concatenate is not an MS Access function - by the looks of it you are trying to UNION two queries together. Take a look at UNION in the Access help and that should get you going.

            Hope that helps,

            Kevin
            KDM Digital Media - Actinic web design and hosting

            Comment


              #7
              Ahhhhh

              table1
              158042 1038 track1
              158042 1039 track2
              158043 1040 track1

              table 2
              158042 albumtitle tracksfield


              i want create in table1

              158042 albumtitle1 track1,track2
              158043 albumtitle2 track1

              cant see how the UNION command can do this

              please help, I am going round in circles

              Comment


                #8
                You just need an update query something like this
                Code:
                UPDATE Table1 SET Table1.[FieldName] = 
                [Table1]![Fieldname]+' '+[Table2]![Fieldname]; 
                on [Table1].[FieldName] = [Table2].[FieldName]
                Try it out on a backup table and keep overwriting the backup till you get it right.
                Last edited by wjcampbe; 16-Sep-2005, 02:06 PM. Reason: force the code to wrap
                Bill
                www.egyptianwonders.co.uk
                Text directoryWorldwide Actinic(TM) shops
                BC Ness Solutions Support services, custom software
                Registered Microsoft™ Partner (ISV)
                VoIP UK: 0131 208 0605
                Located: Alexandria, EGYPT

                Comment

                Working...
                X