Click here to Skip to main content
15,896,154 members
Home / Discussions / Database
   

Database

 
GeneralRe: Help! our DBA died Pin
rwestgraham2-Nov-05 11:34
rwestgraham2-Nov-05 11:34 
GeneralRe: Help! our DBA died Pin
sameerhanda3-Nov-05 4:24
sameerhanda3-Nov-05 4:24 
QuestionXML to SQL Server data transformation Pin
Probal Roy31-Oct-05 2:12
Probal Roy31-Oct-05 2:12 
QuestionSQL - Check if field contains string Pin
Zanathel30-Oct-05 7:07
Zanathel30-Oct-05 7:07 
AnswerRe: SQL - Check if field contains string Pin
toxcct30-Oct-05 8:12
toxcct30-Oct-05 8:12 
GeneralRe: SQL - Check if field contains string Pin
Zanathel30-Oct-05 11:15
Zanathel30-Oct-05 11:15 
GeneralRe: SQL - Check if field contains string Pin
toxcct30-Oct-05 20:58
toxcct30-Oct-05 20:58 
GeneralRe: SQL - Check if field contains string Pin
Leather992-Nov-05 3:30
Leather992-Nov-05 3:30 
QuestionmySql in my application Pin
Sasuko29-Oct-05 14:01
Sasuko29-Oct-05 14:01 
AnswerRe: mySql in my application Pin
Paul Conrad30-Oct-05 18:36
professionalPaul Conrad30-Oct-05 18:36 
GeneralRe: mySql in my application Pin
Sasuko30-Oct-05 21:30
Sasuko30-Oct-05 21:30 
GeneralRe: mySql in my application Pin
Paul Conrad31-Oct-05 4:54
professionalPaul Conrad31-Oct-05 4:54 
QuestionORDER BY @Variable??? Pin
Carl Mercier29-Oct-05 10:43
Carl Mercier29-Oct-05 10:43 
AnswerRe: ORDER BY @Variable??? Pin
twostepted30-Oct-05 17:39
twostepted30-Oct-05 17:39 
GeneralRe: ORDER BY @Variable??? Pin
Carl Mercier30-Oct-05 19:19
Carl Mercier30-Oct-05 19:19 
GeneralRe: ORDER BY @Variable??? Pin
twostepted31-Oct-05 12:56
twostepted31-Oct-05 12:56 
AnswerRe: ORDER BY @Variable??? Pin
Edbert P31-Oct-05 12:20
Edbert P31-Oct-05 12:20 
QuestionOptimization - newbie problem Pin
gbaii29-Oct-05 0:36
gbaii29-Oct-05 0:36 
Confused | :confused: Hi all. I have a problem to solve with an MS Access database. In a login form the user have to enter username and password. In the back there is a table called users witch have the fallowing fields: userid, username, userpass. I wrote the fallowing code to check if the username and password match with those in the table users:

Private sub command2_click()
Set rst1 = CurrentDb.OpenRecordset("useri", dbOpenDynaset)

Private Sub Command2_Click()
Dim qdef1, qdef2 As QueryDef
Set rst1 = CurrentDb.OpenRecordset("useri", dbOpenDynaset)
Set qdef1 = CurrentDb.CreateQueryDef("")
With qdef1
.SQL = "SELECT * FROM users " & "WHERE username= '" & [Forms]![form1]![input_user] & "'" & "and userpass= '" & [Forms]![form1]![input_pass] & "'"

Set rst = qdef1.OpenRecordset()
nri = rst.RecordCount
End With
rst1.FindFirst "username= '" & Me.input_user & "'"
If rst1.NoMatch Then
MsgBox "There is not such user!"
Exit Sub
Else
If nri = 0 Then
MsgBox "Password does not match!"
Exit Sub
Else
' Everythiong is ok... go on and do the stuff!!!
End If
End If
End Sub


My question is if there is any possibility to optimize this code, to make it simple.

Thank you very much.
Respect,
Gabriel

AnswerRe: Optimization - newbie problem Pin
Edbert P31-Oct-05 12:28
Edbert P31-Oct-05 12:28 
GeneralRe: Optimization - newbie problem Pin
gbaii1-Nov-05 7:31
gbaii1-Nov-05 7:31 
QuestionMessage for Vijay Mathew Pandyalakal re Easy_odbc Pin
mville28-Oct-05 21:02
mville28-Oct-05 21:02 
Questionconnect to remote oracle Database Pin
odukuye28-Oct-05 10:40
odukuye28-Oct-05 10:40 
QuestionADV ICE WANTED!! Pin
jaygreen928-Oct-05 8:59
jaygreen928-Oct-05 8:59 
AnswerRe: ADV ICE WANTED!! Pin
Colin Angus Mackay28-Oct-05 13:19
Colin Angus Mackay28-Oct-05 13:19 
QuestionProblem with working SQL Server SAVE POINTS in Transactions. Pin
farhan197627-Oct-05 20:11
farhan197627-Oct-05 20:11 

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.