Jump to content

Recommended Posts

Posted

Boas Pessoal

Estou com uma situação e agradeço ajuda

Tenho um Form que abre com uma datagridview criada atraves do wizard, e pretendo fazer um select para saber quem faz anos no mes currente.

Estou a utilizar o codigo abaixo descrito, mas não consigo por o select a funcionar.

Obrigado desde já pela atenção

 Private Sub Button14_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button14.Click

        Label2.Text = "Aniversários do Mês"
        Label2.Visible = True
        Label2.ForeColor = Color.Red

    
        Dim conn As New OleDbConnection()
        conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\AgendaAnosVB6\AgendaAnosNova\AgendaAnos.mdb"
        Dim ds As New DataSet
        Dim cmd As OleDbCommand = conn.CreateCommand
        Dim DataMes As Date = Today


        cmd.CommandText = "Select Nome, Sobrenome, Endereco, Nascimento " & _
                          "From Amigos " & _
                          "Where Nascimento = DatePart(DateInterval.Month, DataMes) "

        conn.Open()

        Dim leitor As OleDbDataReader = cmd.ExecuteReader()

        Try
            AmigosDataGridView.DataSource = ds.Tables("Amigos")

            leitor.Close()
            conn.Close()

        Catch erro As Exception
            MsgBox("Erro " & vbCrLf & erro.ToString, MsgBoxStyle.Critical, "Erro")
        End Try

    End Sub
Posted

cmd.CommandText = "Select Nome, Sobrenome, Endereco, Nascimento " & _

                          "From Amigos " & _

                          "Where Nascimento = DatePart(DateInterval.Month, DataMes) "

Não podes usar aqui o DateInterval.Month, n é reconhecido pelo SQL.

Pesquisa sobre como adicionar parametros nas querys sql em vb.net

Matraquilhos para Android.

Gratuito na Play Store.

https://play.google.com/store/apps/details?id=pt.bca.matraquilhos

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.