Click here to Skip to main content
15,918,330 members
Home / Discussions / Database
   

Database

 
AnswerRe: Does access work on network? Pin
Mike Dimmick30-Jul-03 3:11
Mike Dimmick30-Jul-03 3:11 
GeneralRe: Does access work on network? Pin
Member 9630-Jul-03 4:25
Member 9630-Jul-03 4:25 
GeneralRe: Does access work on network? Pin
Mike Dimmick30-Jul-03 4:49
Mike Dimmick30-Jul-03 4:49 
GeneralRe: Does access work on network? Pin
Member 9630-Jul-03 5:28
Member 9630-Jul-03 5:28 
AnswerRe: Does access work on network? Pin
Member 9630-Jul-03 4:23
Member 9630-Jul-03 4:23 
GeneralADO Performance Pin
RChin29-Jul-03 22:40
RChin29-Jul-03 22:40 
GeneralRe: ADO Performance Pin
Mike Dimmick30-Jul-03 3:36
Mike Dimmick30-Jul-03 3:36 
GeneralRe: ADO Performance Pin
RChin30-Jul-03 22:34
RChin30-Jul-03 22:34 
QuestionHow to get the columns except one Pin
Exceter29-Jul-03 18:45
Exceter29-Jul-03 18:45 
AnswerRe: How to get the columns except one Pin
Mike Dimmick30-Jul-03 3:07
Mike Dimmick30-Jul-03 3:07 
GeneralRe: How to get the columns except one Pin
Alexander Kojevnikov30-Jul-03 5:15
Alexander Kojevnikov30-Jul-03 5:15 
GeneralRe: How to get the columns except one Pin
Philip Patrick31-Jul-03 2:38
professionalPhilip Patrick31-Jul-03 2:38 
GeneralRe: How to get the columns except one Pin
Alexander Kojevnikov31-Jul-03 4:16
Alexander Kojevnikov31-Jul-03 4:16 
GeneralDetecting MDAC version Pin
Thesisus29-Jul-03 8:04
Thesisus29-Jul-03 8:04 
GeneralRe: Detecting MDAC version Pin
Bo Hunter29-Jul-03 10:32
Bo Hunter29-Jul-03 10:32 
GeneralRe: Detecting MDAC version Pin
Mike Dimmick29-Jul-03 13:36
Mike Dimmick29-Jul-03 13:36 
Generalindexof - wishing for Pin
Megan Forbes29-Jul-03 5:07
Megan Forbes29-Jul-03 5:07 
GeneralRe: indexof - wishing for Pin
jeff_martin29-Jul-03 5:16
jeff_martin29-Jul-03 5:16 
GeneralRe: indexof - wishing for Pin
Mike Dimmick29-Jul-03 13:47
Mike Dimmick29-Jul-03 13:47 
GeneralWhat's wrong with Query String; Pin
Bo Hunter28-Jul-03 18:55
Bo Hunter28-Jul-03 18:55 
GeneralRe: What's wrong with Query String; Pin
Alexander Kojevnikov28-Jul-03 23:20
Alexander Kojevnikov28-Jul-03 23:20 
AND operator has a higher priority than OR. You might want to use parentheses:
SELECT [ID], Title, NodeType, ParentID, [Language], Description 
FROM SourceCode 
WHERE (Title LIKE '%Title%' OR Code LIKE '%Title%') 
AND (Language = 1 OR Language = 2 OR Language = 3 OR Language = 4 OR Language = 5)
AND (NodeType = 1 OR NodeType = 2 OR NodeType = 3 OR NodeType = 4 
OR NodeType = 5 OR NodeType = 6)
AND (ParentID = 4 OR ParentID = 6)


HTH,

Alexandre Kojevnikov
MCAD charter member
Leuven, Belgium

GeneralRe: What's wrong with Query String; Pin
Jon Hulatt29-Jul-03 1:43
Jon Hulatt29-Jul-03 1:43 
GeneralRe: What's wrong with Query String; Pin
Bo Hunter29-Jul-03 10:21
Bo Hunter29-Jul-03 10:21 
GeneralRe: What's wrong with Query String; Pin
Alexander Kojevnikov29-Jul-03 22:07
Alexander Kojevnikov29-Jul-03 22:07 
GeneralRead-only Access DB Problem Pin
-- NA --28-Jul-03 2:41
-- NA --28-Jul-03 2:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.