Jump to content

Some help with SQLite Query


 Share

Recommended Posts

I have SQLite database with one main table "mainTable" and couple daughter tables "daughterTable*" where "*" is from 1 and up (not known before hand)

what i need is to make sqlite query for search entries in main table, which is not exist in any (all) daughter tables.

maybe someone can help

$s_query_string = "SELECT ROWID,* FROM mainTable WHERE " & $columnName & " {is not exist in same column of daughterTable* }"

_SQLite_Query($db, $s_query_string, $hQuery)
While _SQLite_FetchData($hQuery, $aRow, False, False) = $SQLITE_OK
    ConsoleWrite("string --> " & $aRow[1] & " / " & $aRow[3] & @CRLF
WEnd
Link to comment
Share on other sites

Iczer,

This question clearly denotes a wrong database design. You should never have to treat schema names (tables, columns) as parameters.

I suspect that all your daughter tables share the same layout, while "something" makes data go in a particular table. The correct design is to add this "something" indicator to the existing columns and group all these table in that one. This is a step towards normalization of your database.

To make it easier to understand, you don't have separate phonebooks for, say, men and women. You group all entries in one phonebook and eventually add a gender field, should you need it.

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

Without the restructure above, which would be best, you'll need two queries, one to grab all tables like 'daughterTable%', and then loop through that return, and use it to drive another query to each table.  You'll have to google for the syntax of querying tables via mysql.

Interactive sql is like: select * from sysobjects

maybe start with something like: SELECT * FROM INFORMATION_SCHEMA.TABLES

Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Link to comment
Share on other sites

That won't work with SQLite.

Use this:

#include <Array.au3>
#include <SQLite.au3>
#include <SQLite.dll.au3>

_SQLite_Startup()
Local $hDB = _SQLite_Open(@ScriptDir & "\myDB.sqlite")

Local $aRows, $iRows, $iCols
_SQLite_GetTable2d($hDB, "select name from sqlite_master where type = 'table' and name like 'daughter%';", $aRows, $iRows, $iCols)
_ArrayDisplay($aRows)

_SQLite_Close($hDB)
_SQLite_Shutdown()

Use actual DB filename and table prefix in the where clause.

Edited by jchd

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...