AccessQ + LocalDBQ

Costas

Administrator
Staff member
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.

accessq.jpg


Platform : C# 2010
Operating System : Windows
windows1.gif
2000 /
windows1.gif
XP /
windows1.gif
2003 /
windows1.gif
Vista /
windows1.gif
win7 (32bit)
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 > 0


Having
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;)
 

Costas

Administrator
Staff member
LocalDB is a feature of SQL Server targeted to developers, but lately many applications use it as production database. This tiny application comes to give a feeling of LocalDB query analyzer in 27kb for .mdf files.

Platform : C# 2012
Operating System : Windows
windows1.gif
2000 /
windows1.gif
XP /
windows1.gif
2003 /
windows1.gif
Vista /
windows1.gif
win7 (32bit)
Requirements : v4 .NET framework
Filesize : 16kb

Download

Required to be installed - LocalDB (choose the architect reflecting your system OS)
Microsoft - SQL Server Express LocalDB

#localdbq



as reminder : user can use the SSMS to connect to LocalDB, in such case, has to provide as connection string the
(localdb)\MSSQLLocalDB
the LocalDB files (aka .mdf & .ldf) in this situation exist to
%localappdata%\Microsoft\Microsoft SQL Server Local DB\Instances\vxx.x
 
Top