G
Guy Cohen
Hi all.
What is the use of this window?
Is it only to see the objects/tables of the database?
Lets say I have this code:
Dim SQL As String
SQL = "SELECT * from mytable"
Dim Adapter As New Data.OleDb.OleDbDataAdapter(SQL, connection )
Dim DS As New Data.DataSet
Call Adapter.Fill(DS)
Can I use connection from the database explorer window instead of providing
a connection string ?
I am using this code on several .aspx pages - should I use dim
connectionstring as string in each of them?
Where do I put a global parameter/constant ?
Newbie me....
TIA
Guy
What is the use of this window?
Is it only to see the objects/tables of the database?
Lets say I have this code:
Dim SQL As String
SQL = "SELECT * from mytable"
Dim Adapter As New Data.OleDb.OleDbDataAdapter(SQL, connection )
Dim DS As New Data.DataSet
Call Adapter.Fill(DS)
Can I use connection from the database explorer window instead of providing
a connection string ?
I am using this code on several .aspx pages - should I use dim
connectionstring as string in each of them?
Where do I put a global parameter/constant ?
Newbie me....
TIA
Guy