Click here to Skip to main content
16,005,281 members
Home / Discussions / Database
   

Database

 
GeneralRe: connect to a encrypted Access file(*.mdb) Pin
Mazdak9-Apr-02 8:51
Mazdak9-Apr-02 8:51 
GeneralRe: connect to a encrypted Access file(*.mdb) Pin
9-Apr-02 18:49
suss9-Apr-02 18:49 
GeneralRe: connect to a encrypted Access file(*.mdb) Pin
Mazdak10-Apr-02 0:30
Mazdak10-Apr-02 0:30 
GeneralRe: connect to a encrypted Access file(*.mdb) Pin
SimonS11-Apr-02 23:28
SimonS11-Apr-02 23:28 
GeneralRe: connect to a encrypted Access file(*.mdb) Pin
12-Apr-02 17:51
suss12-Apr-02 17:51 
GeneralRe: connect to a encrypted Access file(*.mdb) Pin
12-Apr-02 17:52
suss12-Apr-02 17:52 
GeneralSimple question : How to show present a table in VB application Pin
mimi8-Apr-02 10:07
mimi8-Apr-02 10:07 
GeneralRe: Simple question : How to show present a table in VB application Pin
Nick Parker9-Apr-02 3:01
protectorNick Parker9-Apr-02 3:01 
Wow,
Where do I begin, I would suggest getting a book on intro. Visual Basic and make sure that it has ADO database information in one of the chapters. What you are asking is more that just a specific question, but a project. What are you using to display your data? How are you making your connection to the database(ADO, DAO, RDO)? Is there something more specific that you need help with.

This should get you started:
Dim conn as New ADODB.Connection
Dim adors as New ADODB.Recordset
Dim sql as String
sql = "Select * from [YourTableNameHere]"
conn.ConnectionString = [YourConnectionStringHere]
conn.Open
adors.ActiveConnection = conn
adors.Open(sql)


I'm not sure if this helps or not, but I don't think I am fully clear as to your problem.

Nick Parker
GeneralSQL Server 2000 DTS Question: Pin
Jason Weibel8-Apr-02 8:55
Jason Weibel8-Apr-02 8:55 
GeneralSql server,Oracle Integration Pin
vins8-Apr-02 7:02
vins8-Apr-02 7:02 
GeneralRe: Sql server,Oracle Integration Pin
Nick Parker17-Apr-02 6:54
protectorNick Parker17-Apr-02 6:54 
GeneralWhich data type have get to field for array of 400 bytes in access ??? URGENT !!!! Pin
mimi8-Apr-02 4:30
mimi8-Apr-02 4:30 
GeneralRe: Which data type have get to field for array of 400 bytes in access ??? URGENT !!!! Pin
Mazdak8-Apr-02 6:14
Mazdak8-Apr-02 6:14 
GeneralRe: Which data type have get to field for array of 400 bytes in access ??? URGENT !!!! Pin
Mazdak8-Apr-02 6:14
Mazdak8-Apr-02 6:14 
GeneralI use VB ! Not VC ! And I ask answer to my question . Please !!! Pin
mimi8-Apr-02 6:50
mimi8-Apr-02 6:50 
GeneralRe: I use VB ! Not VC ! And I ask answer to my question . Please !!! Pin
Mazdak8-Apr-02 7:19
Mazdak8-Apr-02 7:19 
GeneralWho Could help me ????? Please !!! Pin
mimi8-Apr-02 8:02
mimi8-Apr-02 8:02 
QuestionInstallation Program, what do I need to include? Pin
shypht7-Apr-02 11:58
shypht7-Apr-02 11:58 
GeneralA Jet Dao problem Pin
6-Apr-02 12:00
suss6-Apr-02 12:00 
GeneralRe: A Jet Dao problem Pin
Mazdak6-Apr-02 17:42
Mazdak6-Apr-02 17:42 
GeneralExposing Existing Code as a Web Service Using C# Pin
wolga6-Apr-02 10:16
wolga6-Apr-02 10:16 
GeneralPartial BLOB processing in ODBC Pin
6-Apr-02 6:43
suss6-Apr-02 6:43 
GeneralRe: Partial BLOB processing in ODBC Pin
Nick Parker17-Apr-02 6:57
protectorNick Parker17-Apr-02 6:57 
GeneralOracle question Pin
ernst.maurer5-Apr-02 22:47
ernst.maurer5-Apr-02 22:47 
GeneralDataSet to XMLDataDocument - change tag names Pin
MS le Roux5-Apr-02 1:05
MS le Roux5-Apr-02 1:05 

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.