Connecting Tech Pros Worldwide Help | Site Map

how to add, update, delete records from oracle10gXE using text boxes in vb.net 2008

Newbie
 
Join Date: Feb 2008
Posts: 11
#1: Sep 14 '09
Hi,

I'm designing a windows application in visual studio 2008 and connecting to oracle 10g XE but don't know how to add, update and delete records from my database using text boxes.

Thanks in advance
kadghar's Avatar
Expert
 
Join Date: Apr 2007
Location: Mexico City
Posts: 1,155
#2: Sep 18 '09

re: how to add, update, delete records from oracle10gXE using text boxes in vb.net 2008


Well, you can always use the ODBC reference:

Expand|Select|Wrap|Line Numbers
  1. Imports System.Data.ODBC
  2. ...
  3. Dim myODBCconnection As New OdbcConnection(Driver={Microsoft ODBC for Oracle}; Server=OracleServer.World; "Uid='yourUsername'; Pwd='yourPwd'")
Check out the ODBC's functions, methods, etc... perhaps you can find what you need there.
Reply