473,386 Members | 1,706 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Multiple queries?

I think this would be the proper title for the problem im currently having.

Just a jyst of what the problem im running into is....

1) This page was coded by yet again the same employee whom used to work here a few years back, with time, we need to update.

2) The problem is, we used to only ship via UPS, but now that we offer shipping through other means. However, the page I am working on only allows for orders with UPS tracking numbers to show.

Example

Order Number Status Tracking Number
9999999 Shipped 1ZXXXXXXXXXX
9999998 Shipped


From the top we see that it will show the UPS but not the USPS order. I changed the code up and was able to switch it around vice versa and was dumbfounded as to why it wouldnt show both.

Now that ive confirmed that both items are in two different tables of the db I can figure out how to code it so that I can access both tables, while retaining information from both. (Am I even making any sense?)

Heres a portion of the code.

Expand|Select|Wrap|Line Numbers
  1.         i = 0
  2.  
  3.         if not rstemp.eof then
  4.  
  5.             set rs = createobject("adodb.recordset")
  6.  
  7.             do until rstemp.eof OR howmanyrecs>=maxrecs
  8.  
  9.                 invoice_id = rstemp("unique_key")
  10.                 invoice_status = rstemp("invoice_status")
  11.  
  12.  
  13.                 invoice_tracking = ""
  14.  
  15.  
  16.                 set rs = createobject("adodb.recordset")
  17.                 rs.open "select * from invoices where invoice_tracking = '" & rstemp("invoice_tracking") & "'",strDSN,3,1
  18.  
  19.  
  20.                 if not rs.eof then        
  21.                     if isnull(rs("invoice_tracking")) or rs("invoice_tracking") = null then
  22.                         invoice_tracking = "NO TRACKING # YET"
  23.                     else
  24.                         invoice_tracking = rs("invoice_tracking")
  25.                     end if
  26.                 end if
  27.  
  28.  
  29.                 x_1 = x_1 + 1
  30.  
  31.                 row_name = "abc" & trim(rstemp("invoice_tracking")) & "_" & x_1
  32.                 row_name = replace(row_name," ","")
  33.                 row_name = replace(row_name,".","")
  34.                 row_name = replace(row_name,"'","")
  35.                 row_name = replace(row_name,"@","")
  36.                 row_name = replace(row_name,"?","")
  37.                 row_name = replace(row_name,"%","")
  38.                 row_name = replace(row_name,"!","")
  39.                 row_name = replace(row_name,"#","")
  40.                 row_name = replace(row_name,"$","")
  41.                 row_name = replace(row_name,"^","")
  42.                 row_name = replace(row_name,"*","")
  43.                 row_name = replace(row_name,"(","")
  44.                 row_name = replace(row_name,")","")
  45.                 row_name = row_name & "_" & i                
  46.  
  47.                  i = i + 1
  48.                 if i mod 2 = 0 then
  49.                     response.write "<tr bgcolor='#cccccc'>" 
  50.                 else
  51.                     response.write "<tr bgcolor='#ffffff'>"
  52.                 end if
  53.  
  54.                 if instr(invoice_tracking,"1Z5354RV") then
  55.                     invoice_tracking = "<a href=pages_x_orders_tracking.asp?rid=" & invoice_tracking & ">" & invoice_tracking & "</a>"
  56.                 end if
  57.  
  58.                 if instr(invoice_tracking,"1Z2Y3656") then
  59.                     invoice_tracking = "<a href=pages_x_orders_tracking.asp?rid=" & invoice_tracking & ">" & invoice_tracking & "</a>"
  60.                 end if
  61.  
  62.                 if instr(invoice_tracking,"9101") then
  63.                 invoice_tracking = "<a href=pages_x_orders_tracking.asp?rid=" & invoice_tracking & ">" & invoice_tracking & "</a>"
  64.                 end if
  65.  
  66.                 response.write "<font size='2'>"
  67.                 response.write "<td valign='top'><font face='Arial' size='2'>" & invoice_id & "</font></td>"
  68.                 response.write "<td valign='top'><font face='Arial' size='2'>" & invoice_status & "</font></td>"
  69.                 response.write "<td valign='top'><font face='Arial' size='2'>" & invoice_tracking & "</font></td>"
  70.                 response.write "</font></tr>"
  71.  
  72.  
Thanks in advance everyone,

Gregory Gawaran
Apr 30 '07 #1
8 1491
iam_clint
1,208 Expert 1GB
I wouldn't have used two different tables


but you can join the tables togethor in a query

select * from tracking t
left outer join other_tracking o on t.column = o.column
where yadda = 1
order by date

to join them togethor where i put t.column = o.column there has to be something to match one table to the other like user_Id or something so it would be like on t.user_id = o.user_id
Apr 30 '07 #2
so instead of this

Expand|Select|Wrap|Line Numbers
  1.                 set rs = createobject("adodb.recordset")
  2.                 rs.open "select * from invoices where invoice_tracking = '" & rstemp("invoice_tracking") & "'",strDSN,3,1
  3.  
use this?

Expand|Select|Wrap|Line Numbers
  1. select * from tracking t(t being the element in the table tracking?)
  2. left outer join other_tracking(which would be the other table?) o on t.column = o.column
  3. where yadda = 1 (im abit confused by this piece of code)
  4. order by date
  5.  
Thanks,

Gregory Gawaran
Apr 30 '07 #3
this is how i interpretted what you said to do, but, am not sure if its right, well everything but the yadda part haha.

Expand|Select|Wrap|Line Numbers
  1.                 set rs = createobject("adodb.recordset")
  2.                 rs.open "select * from tracking tracking_number
  3.                 left outer join invoices invoice_tracking on tracking_number.column = invoice_tracking.column
  4.                 where yadda = 1
  5.                 order by date" 
  6.                 & rstemp("invoice_tracking") & "'",strDSN,3,1
  7.  
thanks,

Gregory Gawaran
Apr 30 '07 #4
iam_clint
1,208 Expert 1GB
column actually needs to be a column name, one where it = the other
May 1 '07 #5
ah alrighty, as for yadda, what goes there?
May 1 '07 #6
I was having a problem with unterminated string, but i have fixed that problem (i think?) and now the error im getting is ""Microsoft OLE DB Provider for ODBC Drivers error '80040e21' ODBC driver does not support the requested properties."" its saying the error is on 184, which is where this string of code sits.

This is the code I have for the combine, but I don't know if its correct and is causing the problem but here is the code.
Expand|Select|Wrap|Line Numbers
  1.                 set rs = createobject("adodb.recordset")
  2.                 rs.open "select * from tracking tracking_number    left outer join invoices invoice_tracking on tracking.tracking_number = invoices.invoice_tracking where yadda = 1 order by date" & rstemp("invoice_tracking") & "'",strDSN,3,1
  3.  
  4.  
Im assuming that for the column =, the first part is the table, and the second after the . is the column within the table?

Thanks again in advance,

Gregory Gawaran
May 1 '07 #7
iam_clint
1,208 Expert 1GB
yes
Expand|Select|Wrap|Line Numbers
  1. rs.open "select * from tracking tracking_number    left outer join invoices invoice_tracking on tracking.tracking_number = invoices.invoice_tracking order by date",strDSN,3,1
  2.  
May 1 '07 #8
yes
Expand|Select|Wrap|Line Numbers
  1. rs.open "select * from tracking tracking_number    left outer join invoices invoice_tracking on tracking.tracking_number = invoices.invoice_tracking order by date",strDSN,3,1
  2.  
thanks alot clint, learned something new yet again thanks to you guys.

Gregory Gawaran

PS

Keep up the great help you guys offer us newbies.
May 2 '07 #9

Sign in to post your reply or Sign up for a free account.

Similar topics

4
by: DG | last post by:
Hi, Can anyone advise how to execute multiple statements in a single query batch. For example- update customers set customer_name = 'Smith' where customer_name = 'Smyth'; select * from...
1
by: Jeremy | last post by:
I have built a form that calls queries. I have the first 2 set up as select queries, and the third set up as a make table query. When multiple users are on this application at the same time, they...
0
by: MHenry | last post by:
Hi, I know virtually nothing about creating Macros in Access. I would appreciate some help in creating a Macro or Macros that automatically run(s) 14 Queries (three Make Table Queries, and 11...
11
by: dskillingstad | last post by:
I've been struggling with this problem for some time and have tried multiple solutions with no luck. Let me start with, I'm a novice at Access and I'm not looking for someones help to design my...
4
by: Dave Edwards | last post by:
I understand that I can fill a datagrid with multiple queries, but I cannot figure out how to fill a dataset with the same query but run against multiple SQL servers, the query , table structure...
1
by: mattcatmattcat | last post by:
I have a VB7 aspx file I am creating that requires multiple queries each dependant on the previous queries results. If I run these queries in foxpro, I just run a query then create a cursor with...
8
by: beretta819 | last post by:
Ok, so I apologize in advance for the wordiness of what follows... (I am not looking for someone to make this for me, but to point me in the right direction for the steps I need to take.) I was...
7
by: vaiism | last post by:
I am creating a report that outputs the contact information and details about a water treatment plant, and needs to include information about people who work there. If I tie all the information...
11
by: shriil | last post by:
Hi I have this database that calculates and stores the incentive amount earned by employees of a particular department. Each record is entered by entering the Date, Shift (morn, eve, or night)...
14
by: Supermansteel | last post by:
My team at work uses Cognos to run multiple queries to pull in data. Then they take that data and import into Access and then usually run an Append Query to run a RND function to pull out a few...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.