About 613,000 results
Open links in new tab
  1. Creating a class to interact with a SQL database

    Maybe just a private function within this class. I would then have each method define its query in SQL or a SP and execute it and do something with the results. This keeps the data access …

  2. sql server - dm_audit_class_type_map map to sys.dm_audit_actions ...

    May 7, 2025 · where b.class_type_desc = t.class_desc) order by t.action_id Returns 614 records I do see a far better map coverage by column class_type_desc (614 of 616) compared to …

  3. c# - Generate class from database table - Stack Overflow

    How can I generate a class from a SQL Server table object? I'm not talking about using some ORM. I just need to create the entities (simple class). Something like: public class Person { ...

  4. SQL Server Config manager error: Cannot connect to WMI provider

    Jun 26, 2017 · Cannot connect to WMI provider. You do not have permission or the server is unreachable. Note that you can only manage SQL Server 2005 and later servers with SQL …

  5. Unable to login to SQL Server + SQL Server Authentication + Error ...

    I have created login account on my localhost\\sql2008 Server (Eg. User123) Mapped to Database (default) Authentication Mode on SQL Server is set to both (Windows and SQL) But login to …

  6. class not registered sql server management studio

    Aug 23, 2018 · class not registered sql server management studio Asked 7 years, 3 months ago Modified 7 years, 3 months ago Viewed 7k times

  7. sql server - How can you represent inheritance in a database?

    I'm thinking about how to represent a complex structure in a SQL Server database. Consider an application that needs to store details of a family of objects, which share some attributes, but …

  8. Generate C# class from SQL Server table without Store Procedure

    Sep 7, 2018 · This online tool generates a class from SQL table. Class is based on the CREATE TABLE script in MS-SQL, ORACLE, MYSQL, POSTGRESQL and SQLite databases, to a …

  9. SQLClient What error numbers are related to SQL Server …

    The rules I use for general classification: Number = -1 OR Class/Level/Severity = 20: "Connection Error" Number = -2: "Command Timeout Error" I believe the negative values are strictly from …

  10. What's the driver class name for SQL Server JDBC

    Oct 9, 2018 · I want to connect my Java SpringBoot app to SQL Server and I get the information that spring cannot load driver class. I tried: spring.datasource.driver-class …