SQLClient Documentation

This page provides information about the SQLClient component used by NetAssembly's SQL Server integration.

It includes details on configuration, usage, and common tasks.

Key Features

Example Usage

Here's a simple example:

                SELECT 'Hello, SQL!'
                FROM my_database;
            
``` ```css /* style.css */ body { font-family: 'Arial', sans-serif; line-height: 1.6; background-color: #f4f4f4; margin: 20px; color: #333; } header { background-color: #333; color: #fff; padding: 20px; text-align: center; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } nav a { color: #fff; text-decoration: none; font-weight: bold; margin: 0; padding: 10px 20px; border-bottom: 1px solid #ccc; border-radius: 5px; } nav a:hover { background-color: #e8491d; color: #fff; } main { padding: 20px; max-width: 960px; margin: 20px auto; background-color: #fff; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } section { background-color: #f4f4f4; padding: 20px; border-radius: 8px; margin: 20px auto; max-width: 600px; text-align: center; } .section h1 { font-size: 2.5em; margin-bottom: 20px; text-shadow: 1px #ccc; } .section p { font-size: 1.2em; line-height: 1.5; margin-bottom: 20px; } .section ul { list-style: square; padding-left: 20px; } .section li { padding-left: 20px; margin-bottom: 10px; } .section li:last-child { padding-left: 0; } footer { background-color: #333; color: #fff; text-align: center; padding: 10px; margin-top: 20px; font-size: 14px; } .section .pre { font-size: 1.1em; color: #333; margin-bottom: 20px; }