Really tired with the Access dbases. Still on 2016 seeing people using 'applications' (aka mdb/accdb) for their works. This tiny application comes to give a feeling of mdb query analyzer in 26kb.
	
	
	
		
		
		
			
		
		
	
	
		 
	
Platform : C# 2010
Operating System : Windows
		 2000 /
	
2000 / 
	
	
	
		
		
		
		
	
	
		 XP /
	
XP / 
	
	
	
		
		
		
		
	
	
		 2003 /
	
2003 / 
	
	
	
		
		
		
		
	
	
		 Vista /
	
Vista / 
	
	
	
		
		
		
		
	
	
		 win7 (32bit)
	
win7 (32bit)
Requirements : v4 .NET framework
Filesize : 82kb
Download
 
 
Multi joins and string concatenation in Access file, working like :
	
	
	
		
Having
	
	
	
		
similar - AlexNolan.MDB Viewer
similar - ETLools.Database Browser use (Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\x.mdb
			
			 
	Platform : C# 2010
Operating System : Windows
 
	 
	 
	 
	 
	Requirements : v4 .NET framework
Filesize : 82kb
Download
Multi joins and string concatenation in Access file, working like :
		JavaScript:
	
	SELECT    customers.fname & " " & customers.lname AS [Customer],
          peripheral.peripheral_type              AS [Peripheral Type],
          qty                                     AS [Quantity],
          date_sent                               AS [Date Sent],
          price                                   AS [Price],
          comments
FROM      ((orders
LEFT JOIN peripheral ON peripheral.peripheral_id = orders.peripheral_id)
LEFT JOIN customers ON customers.customer_id = orders.customer_id)
LEFT JOIN prices ON prices.peripheral_id = peripheral.peripheral_id WHERE orders.peripheral_id > 0Having
		JavaScript:
	
	SELECT recID
FROM Customers
WHERE (((Customers.[CustCODE]) In (SELECT [CustCODE] FROM [Customers] As Tmp GROUP BY [CustCODE] HAVING Count(*)>1 )))
ORDER BY Customers.[CustCODE];similar - AlexNolan.MDB Viewer
similar - ETLools.Database Browser use (Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\x.mdb
