Advertisement
Advertisement
| 05.16.2008 at 12:43PM PDT, ID: 23409571 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 05.16.2008 at 12:52PM PDT, ID: 21585884 |
| 05.16.2008 at 12:59PM PDT, ID: 21585944 |
| 05.16.2008 at 01:07PM PDT, ID: 21586009 |
| 05.16.2008 at 01:11PM PDT, ID: 21586031 |
| 05.16.2008 at 01:25PM PDT, ID: 21586163 |
| 05.16.2008 at 01:35PM PDT, ID: 21586241 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: |
Dim ConnectionString As String = "server=ussrm-netsql\netdata;Trusted_Connection=true;DATABASE=TempMike"
Dim DBConnection As Data.SqlClient.SqlConnection = New Data.SqlClient.SqlConnection(ConnectionString)
Dim DBAdapter As Data.SqlClient.SqlDataAdapter
Dim ResultsDataSet As Data.DataSet = New Data.DataSet
Try
DBAdapter = New Data.SqlClient.SqlDataAdapter(QueryString, DBConnection)
DBAdapter.Fill(ResultsDataSet)
DBConnection.Close()
Catch ex As Exception
If DBConnection.State = ConnectionState.Open Then
DBConnection.Close()
End If
End Try
Return ResultsDataSet
|
| 05.16.2008 at 01:40PM PDT, ID: 21586281 |
| 05.16.2008 at 02:00PM PDT, ID: 21586398 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: |
Sub PopulateTables(ByVal node As TreeNode)
Dim strQuer As String
strQuer = "SELECT table_name from " & node.Value & ".information_schema.tables"
Dim ResultSet As Data.DataSet = RunQuery(strQuer)
If ResultSet.Tables.Count > 0 Then
Dim row As Data.DataRow
For Each row In ResultSet.Tables(0).Rows
TreeNode(row("table_name").ToString())
Dim newNode As TreeNode = New TreeNode()
newNode.Text = "<a target=_blank href =fields.aspx?" & Replace(row("table_name") & "~" & node.Value & "^" & "NSND", " ", "%20") & ">" & row("table_name") & "</a>"
'newNode.Text = row("table_name").ToString()
newNode.Value = row("table_name").ToString()
newNode.PopulateOnDemand = False
newNode.SelectAction = TreeNodeSelectAction.None
node.ChildNodes.Add(newNode)
Next
End If
End Sub
|
| 05.16.2008 at 03:09PM PDT, ID: 21586831 |
| 05.18.2008 at 10:23AM PDT, ID: 21593332 |
| 05.19.2008 at 07:28AM PDT, ID: 21598068 |