[Vb.net] Crystal report + requête SQL
Fermé
gezaakk
Messages postés
382
Date d'inscription
jeudi 27 mai 2010
Statut
Membre
Dernière intervention
26 mai 2015
-
29 avril 2011 à 01:36
gezaakk Messages postés 382 Date d'inscription jeudi 27 mai 2010 Statut Membre Dernière intervention 26 mai 2015 - 5 mai 2011 à 17:57
gezaakk Messages postés 382 Date d'inscription jeudi 27 mai 2010 Statut Membre Dernière intervention 26 mai 2015 - 5 mai 2011 à 17:57
A voir également:
- [Vb.net] Crystal report + requête SQL
- Crystal report download - Télécharger - Présentation
- Crystal report viewer - Télécharger - Gestion de données
- Crystal disk - Télécharger - Informations & Diagnostic
- Crystal disk mark - Télécharger - Divers Utilitaires
- Télécharger crystal report 8.5 gratuit - Télécharger - Divers Utilitaires
2 réponses
gezaakk
Messages postés
382
Date d'inscription
jeudi 27 mai 2010
Statut
Membre
Dernière intervention
26 mai 2015
34
5 mai 2011 à 17:57
5 mai 2011 à 17:57
J'utilise Microsoft SQL Server 2005 pour ma base de donnée
Voici commente je fait le connexion a ma base de donnée
Voici commente je fait le connexion a ma base de donnée
Dim MyConnexion As SqlConnection = New SqlConnection("Data Source=GUIDARA-PC\SQLEXPRESS;" & _ "Integrated Security=SSPI;Initial Catalog=test") Dim Mycommand As SqlCommand = MyConnexion.CreateCommand() Mycommand.CommandText = "SELECT nom_test FROM test_1" MyConnexion.Open() Dim myReader As SqlDataReader = Mycommand.ExecuteReader() myReader.Read() myReader.GetValue(0) ... ... myReader.Close() MyConnexion.Close()
gezaakk
Messages postés
382
Date d'inscription
jeudi 27 mai 2010
Statut
Membre
Dernière intervention
26 mai 2015
34
2 mai 2011 à 14:43
2 mai 2011 à 14:43
y a pas une solution?