Click here to Skip to main content
15,897,315 members
Home / Discussions / Database
   

Database

 
QuestionRe: scheduleDate BETWEEN 20/5/2007 AND 30/5/2007 no rows returned Pin
steve_rm1-Jun-07 3:28
steve_rm1-Jun-07 3:28 
AnswerRe: scheduleDate BETWEEN 20/5/2007 AND 30/5/2007 no rows returned Pin
kubben1-Jun-07 6:20
kubben1-Jun-07 6:20 
GeneralRe: scheduleDate BETWEEN 20/5/2007 AND 30/5/2007 no rows returned Pin
steve_rm4-Jun-07 6:08
steve_rm4-Jun-07 6:08 
AnswerRe: scheduleDate BETWEEN 20/5/2007 AND 30/5/2007 no rows returned Pin
itwillgetbetter14-Jun-07 3:01
itwillgetbetter14-Jun-07 3:01 
QuestionBest common connection type Pin
gavthegenius31-May-07 22:52
gavthegenius31-May-07 22:52 
Questionprimary key and foreign key Pin
saravanan0531-May-07 18:47
saravanan0531-May-07 18:47 
AnswerRe: primary key and foreign key Pin
sam#31-May-07 19:07
sam#31-May-07 19:07 
QuestionSetFieldValue Pin
hero199531-May-07 17:32
hero199531-May-07 17:32 
What's wrong with these code: a new field named "Field19" is created. i wanna set all the values in Field19 are "abc:



CDaoDatabase db;
CDaoTableDef tableDef(&db);
db.Open("C:\\ktt.mdb");
tableDef.Open("Table3");
CDaoRecordset recset( &db );

tableDef.CreateField("Field19",dbText,255,dbUpdatableField | dbVariableField);

if ( !recset.IsEOF() )
recset.MoveLast();


while( !recset.IsEOF() )
{

recset.SetFieldValue("Field19","abc");

recset.MovePrev();


}

AnswerRe: SetFieldValue Pin
Mike Dimmick1-Jun-07 3:20
Mike Dimmick1-Jun-07 3:20 
QuestionError with SQL Server 2005 Endpoints Pin
duaatul31-May-07 6:19
duaatul31-May-07 6:19 
QuestionFuzzy Grouping performance issue Pin
seee sharp31-May-07 6:18
seee sharp31-May-07 6:18 
QuestionConvert SQL datetime to just date Pin
kozu31-May-07 5:29
kozu31-May-07 5:29 
AnswerRe: Convert SQL datetime to just date Pin
kubben31-May-07 5:36
kubben31-May-07 5:36 
GeneralRe: Convert SQL datetime to just date Pin
kozu31-May-07 6:01
kozu31-May-07 6:01 
AnswerRe: Convert SQL datetime to just date Pin
Shahil Shah31-May-07 6:13
Shahil Shah31-May-07 6:13 
GeneralRe: Convert SQL datetime to just date Pin
kozu31-May-07 6:24
kozu31-May-07 6:24 
GeneralRe: Convert SQL datetime to just date Pin
kozu31-May-07 6:36
kozu31-May-07 6:36 
GeneralRe: Convert SQL datetime to just date Pin
Shahil Shah31-May-07 6:38
Shahil Shah31-May-07 6:38 
AnswerRe: Convert SQL datetime to just date Pin
Michael Potter31-May-07 9:45
Michael Potter31-May-07 9:45 
QuestionPlease Heeelp - connection error driving me crazy Pin
ComCoderCsharp31-May-07 4:11
ComCoderCsharp31-May-07 4:11 
AnswerRe: Please Heeelp - connection error driving me crazy Pin
Colin Angus Mackay31-May-07 4:17
Colin Angus Mackay31-May-07 4:17 
GeneralRe: Please Heeelp - connection error driving me crazy Pin
ComCoderCsharp31-May-07 5:07
ComCoderCsharp31-May-07 5:07 
GeneralRe: Please Heeelp - connection error driving me crazy Pin
Colin Angus Mackay31-May-07 8:13
Colin Angus Mackay31-May-07 8:13 
QuestionHow to check if a field already exists in a table Pin
SWDevil31-May-07 3:13
SWDevil31-May-07 3:13 
AnswerRe: How to check if a field already exists in a table Pin
Colin Angus Mackay31-May-07 4:14
Colin Angus Mackay31-May-07 4:14 

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.