Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Using MS Access 97 to create a user in Oracle
You need to use a passthrough query.
You could create one with the query builder, or use an "event procedure", as I did for this password changer:
Dim mycommand As String
mycommand = "alter user " + USERNAME.Value + " identified by " +
newpasswd.Value
mydatabase.Execute mycommand, dbSQLPassThrough MsgBox "password changed"
Exit_passwordbutton_Click:
Exit Sub
Err_passwordbutton_Click:
MsgBox Err.Description
Resume Exit_passwordbutton_Click
End Sub
> Has anyone used MS Access 97 to create a user in Oracle...
> I have started creating an Access module to connect via sqlnet to the Oracle
> database, but am running into problems writing the create user part...
> Thanks for any help or suggestions, or sample code...
>
> John Dickerson
> :)
>
> -----== Posted via Deja News, The Leader in Internet Discussion ==-----
> http://www.dejanews.com/ Now offering spam-free web-based newsreading
--
The views expressed here are mine and do not reflect the official
position of my employer or the organization through which the
Internet was accessed.
Received on Fri Jun 19 1998 - 10:13:25 CDT
![]() |
![]() |