-
-
-
-
-
Without "distinct" recorset is opened without problems.
Private Sub Command1_Click()
Dim Cnn As New ADODB.Connection
Dim rs As New ADODB.Recordset
Dim CadOracle As String
Dim CadSql As String
CadOracle = "DSN=Oracle;UID=RECAUDA;PWD=xxxx;DBQ=orcl"
Cnn.Open CadOracle
CadSql = "select distinct NOMBRE_MUNI_SUJ from paddgc53"
rs.Open CadSql, Cnn, adOpenKeyset, adLockOptimistic, adCmdText
While Not rs.EOF
rs.MoveNext
Wend
Cnn.Close
End Sub
thanks.">Hello, I have problem with this RecordSet. Do not open with "select distinct". Why?Without "distinct" recorset is opened without problems.Private Sub Command1_Click()Dim Cnn As New ADODB.ConnectionDim rs As New ADODB.RecordsetDim CadOracle As StringDim CadSql As StringCadOracle = "DSN=Oracle;UID=RECAUDA;PWD=xxxx;DBQ=orcl"Cnn.Open CadOracleCadSql = "select distinct NOMBRE_MUNI_SUJ from paddgc53"rs.Open CadSql, Cnn, adOpenKeyset, adLockOptimistic, adCmdTextWhile Not rs.EOF rs.MoveNextWendCnn.CloseEnd Subthanks.
-
-
-
-
-
-
-
Send SQL* Plus session output to text file
How do you send the output of your SQL* Plus session to a text operating system file
-
-
-
-
-
-
-
-
Oracle Basics Interview Questions
Ans