Insert db in vb.net

di il
11 risposte

Insert db in vb.net

Ciao a tutti... il mio problema si verifica quando vado a fare un insert nel database, quello che succede è che non viene fatto l'insert nonostante il db sia connesso e la query giusta (credo).
Qualcuno può aiutarmi? Sto impazzendo

11 Risposte

  • Re: Insert db in vb.net

    Oops... avevo dimenticato il codice




    Imports System.Data.OleDb
    Imports System.Windows.Forms

    Public Class frmArchivio
    Dim percorso As String = "Data Source=C:\Documents and Settings\Vito\Desktop\provaData\elenco_sposi.mdb"
    Dim conn As String = "Provider=Microsoft.Jet.OLEDB.4.0;" _
    & "Data Source=C:\provaData\elenco_sposi.mdb"
    Dim cn As New OleDbConnection(conn)
    Private Sub frmArchivio_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load


    End Sub

    Private Sub cmdConnetti_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdConnetti.Click
    If cmdConnetti.Text = "&Connetti" Then
    cn.Open()
    cmdConnetti.Text = "&Disconnetti"
    Else
    cmdConnetti.Text = "&Connetti"

    cn.Close()
    End If
    If cn.State = ConnectionState.Open Then
    MessageBox.Show("Il db adesso è connesso", _
    "Attenzione", MessageBoxButtons.OK, _
    MessageBoxIcon.Information)
    End If
    End Sub

    Private Sub cmdAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdAdd.Click

    Dim nomiSposi As String = txtAdd.Text

    Dim qry As String
    qry = "INSERT INTO tabellaSposi (IDsposi) VALUES ('&nomiSposi&')"
    txtAdd.Text = ""

    End Sub

    Private Sub txtAdd_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtAdd.TextChanged



    End Sub
    End Class
  • Re: Insert db in vb.net

    Xd
  • Re: Insert db in vb.net

    Boiate?

    Già in effetti... questo:

    xxxxxxxxxxxxxxxxxxxxxxxxxx

    e questo:

    xd

    non sono affatto boiate.
  • Re: Insert db in vb.net

    Cosa ? nn capisco cs intendi ?
    Per XD intendo ok ( sorridendo ) ... Nulla di offensivo se è questo che intendi ... ciao
  • Re: Insert db in vb.net

    No mi riferisco all'immagine che hai messo sotto, non volevo scrivere quello che ho scritto fino a quando non ho visto che quell'immagine tra i 2 post che hai inserito si vede solo nel mio e ho pensato che volessi sfottermi. ho sbagliato?
  • Re: Insert db in vb.net

    Ah sisi figuati nn volevo assolutamente sfottere te ( è un immagine simpatica che ho ritenuto nn facesse danni ) scusa nn volevo offendere nessuno
  • Re: Insert db in vb.net

    Scusami tu, dovevo chiedere prima.

    Puoi aiutarmi? sto impazzendo
  • Re: Insert db in vb.net

    Ah, avevo capito che avevi risolto ?
  • Re: Insert db in vb.net

    Ah ecco perchè hai scritto xd. no avevo dimenticato di postare il codice
  • Re: Insert db in vb.net

    Ah ok ... Beh adesso cm adesso nn saprei cm aiutarti ... Chiedo a dei miei amici ... dopo ... forse riesco a rix ... spero
  • Re: Insert db in vb.net

    Ok grazie
Devi accedere o registrarti per scrivere nel forum
11 risposte