Displaying 2 results from an estimated 2 matches for "colorless".
2007 May 01
0
Joining tables and query design advice
...------
Attributes
-------------
|ID
|Object_ID (foreign key references Objects.id)
|Value
-------------
I want to be able to search for Objects by (potentially many)
combinations of Attribute values. To show all of the unique Objects
that have Attributes ''green'' AND ''colorless'', I am currently writing
this mess of code:
SELECT DISTINCT objects.*
FROM attributes t1, attributes t2, objects
WHERE t1.val = ''green''
AND t2.val = ''colorless''
AND t1.object_id = t2.object_id
AND t1.object_id = objects.id
Is there a way I can search...
2006 Apr 11
1
getwinegit.sh 0.33 released! (final version)
In this Release I changed all the stuff i was annoyed of. Here the changes:
0.33 We are now also able to load a config-file...
- Optional Config-File Support! The Internal Config-Area still exists.
I created an example-config and a colorless one for all who don't
want a colorful output
- Better handling of multiple process protection for the script
- Better Checks for set variables
I don't plan to develop for getwinegit.sh any longer. It is now
feature-complete and ate enough of time. It was nice to learn, what
scripting...