123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Data;
- using System.Data.Common;
- using System.Data.SqlClient;
- namespace FastReport.Data
- {
- /// <summary>
- /// Represents a connection to MS SQL database.
- /// </summary>
- /// <example>This example shows how to add a new connection to the report.
- /// <code>
- /// Report report1;
- /// MsSqlDataConnection conn = new MsSqlDataConnection();
- /// conn.ConnectionString = "your_connection_string";
- /// report1.Dictionary.Connections.Add(conn);
- /// conn.CreateAllTables();
- /// </code>
- /// </example>
- public partial class MsSqlDataConnection : DataConnectionBase
- {
- /// <inheritdoc/>
- protected override string GetConnectionStringWithLoginInfo(string userName, string password)
- {
- SqlConnectionStringBuilder builder = new SqlConnectionStringBuilder(ConnectionString);
-
- builder.IntegratedSecurity = false;
- builder.UserID = userName;
- builder.Password = password;
-
- return builder.ToString();
- }
- /// <inheritdoc/>
- public override string QuoteIdentifier(string value, DbConnection connection)
- {
- // already quoted? keep in mind GetDBObjectNames and non-dbo schema!
- if (!value.EndsWith("\""))
- value = "\"" + value + "\"";
- return value;
- }
- /// <inheritdoc/>
- public override Type GetConnectionType()
- {
- return typeof(SqlConnection);
- }
- /// <inheritdoc/>
- public override DbDataAdapter GetAdapter(string selectCommand, DbConnection connection,
- CommandParameterCollection parameters)
- {
- SqlDataAdapter adapter = new SqlDataAdapter(selectCommand, connection as SqlConnection);
- foreach (CommandParameter p in parameters)
- {
- SqlParameter parameter = adapter.SelectCommand.Parameters.Add(p.Name, (SqlDbType)p.DataType, p.Size);
- object value = p.Value;
- if ((SqlDbType)p.DataType == SqlDbType.UniqueIdentifier && (value is Variant || value is String))
- value = new Guid(value.ToString());
- parameter.Value = value;
- }
- return adapter;
- }
- /// <inheritdoc/>
- public override Type GetParameterType()
- {
- return typeof(SqlDbType);
- }
- private void GetDBObjectNames(string name, List<string> list)
- {
- DataTable schema = null;
- DbConnection conn = GetConnection();
- try
- {
- OpenConnection(conn);
- schema = conn.GetSchema("Tables", new string[] { null, null, null, name });
- }
- finally
- {
- DisposeConnection(conn);
- }
- foreach (DataRow row in schema.Rows)
- {
- string tableName = row["TABLE_NAME"].ToString();
- string schemaName = row["TABLE_SCHEMA"].ToString();
- if (String.Compare(schemaName, "dbo") == 0)
- list.Add(tableName);
- else
- list.Add(schemaName + ".\"" + tableName + "\"");
- }
- }
- /// <inheritdoc/>
- public override string[] GetTableNames()
- {
- List<string> list = new List<string>();
- GetDBObjectNames("BASE TABLE", list);
- GetDBObjectNames("VIEW", list);
- return list.ToArray();
- }
- }
- }
|