How to resolve the error of SQL invalid object name?

313    Asked by CamelliaKleiber in SQL Server , Asked on Mar 15, 2023

I connect the database with Visual Studio 2017. When I am trying to execute a query then it shows the following error:

The connection string I am using is:

SqlConnection con = new SqlConnection("Data Source=ANUPAM-DESKTOPANUPAM;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=True;ApplicationIntent=ReadWrite;MultiSubnetFailover=False"); 

My code:

public void exicuteDatabaseQuery(String query)
    {
        con.Open();
        SqlDataAdapter sda = new SqlDataAdapter(query, con);
        sda.SelectCommand.ExecuteNonQuery();
        con.Close();
        MessageBox.Show("Successfull");
    }
    private void Button_Click(object sender, RoutedEventArgs e)
    {
        int id = Convert.ToInt32(___Id_.Text);
        int number = Convert.ToInt32(___Number_.Text);
        String InsertQuery = "INSERT INTO Member (id, number) 
        values('"+id+"','"+number+"')";
        exicuteDatabaseQuery(InsertQuery);
    }

Database explorer image:

Answered by Camellia Kleiber

I'd guess the problem is your SQL Server login does not have its "default database" properly set, which is showing you the error of SQL invalid object name.


This will show you what your "default database" is set to:

SELECT sp.name
    , sp.default_database_name
FROM sys.server_principals sp
WHERE sp.name = SUSER_SNAME();
You can either change the default database of your login, or you can specify the database in the connection string.
This will modify your default database:
ALTER LOGIN WITH DEFAULT_DATABASE = [testDB];
If you want to specify the database in the connection string, make your connection string:
SqlConnection con = new SqlConnection("Data Source=ANUPAM-DESKTOP\ANUPAM;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=True;ApplicationIntent=ReadWrite;MultiSubnetFailover=False;Initial Catalog=testDB");

Your Answer

Interviews

Parent Categories