search

 avatar
unknown
actionscript
4 years ago
1.0 kB
6
Indexable
dt.Clear();
            da = new SqlDataAdapter(@"SELECT [id]
                                              ,[Nom Client]
                                              ,[Address]
                                              ,[N° Téléphone]
                                              ,[N° Registre commerce]
                                              ,[N° Identification Fiscale]
                                              ,[N° d'identification statistic]
                                              ,[N° Article]
                                              ,[Ancien Crédit]
                                              ,[Date]
                                              ,[Motif]
                                          FROM [dbo].[client] WHERE [Nom Client] + [Address] +  [N° Téléphone] + [N° Registre commerce] + [N° Identification Fiscale] + [N° Article]  like N'%" + searchtxt.Text + "%' ", cn);
            da.Fill(dt);
            this.metroGrid1.DataSource = dt;
Editor is loading...