ODBC driver does not support the requested properties.
            ODBC driver does not support the requested properties. - ASP - Programmation
         
        
            
                
											
					
	     
							 
					
					
	     
							 
Sujets relatifs:
                        
                            
                            
                                Leave a Replay
                                Make sure you enter the(*)required information where indicate.HTML code is not allowed
                              
      
                                 
                         
                     
                     
             
          
    
   
	 
    
	
 
Marsh Posté le 29-04-2005 à 20:03:18
J'ai une page ASP avec la fonction sauvante,
Function GetQuestionCount()
OpenConnection True
sSQL = "SELECT COUNT(*) FROM Questions"
If iDBType = 1 Then sSQL = sSQL & " AND QuizID=" & iQuizID
rsQuiz.Open sSQL, cnnQuiz, 1
GetQuestionCount = rsQuiz(0)
CloseConnection rsQuiz, cnnQuiz
End Function
Mais je recois ce message "ODBC driver does not support the requested properties." lorsque j'éxecute le fichier. J'utilise MySQL 4.1 avec MyODBC 3.51.11
Merci