logo
small logo
  • Produkty
  • Zamów
  • Wsparcie techniczne
  • About
  • Customer panel Wsparcie techniczne
    • en
    • de
    • JP
    • ZH
  • Glówna strona
  • /
  • Articles
  • /
  • SQL
  • .NET
  • FastReport
  • CSV
  • Customization
  • Business Graphics
  • Export
  • RTF
  • Install
  • Designer
  • VCL
  • Lazarus
  • Delphi
  • MacOS
  • Mono
  • SQL
  • Core
  • ASP.NET
  • Angular
  • WebReport
  • React
  • Online Designer
  • Vue
  • Data Source
  • JSON
  • Knockout
  • MVC
  • PDF
  • PHP
  • Excel
  • Firebird
  • Filtering
  • FastCube
  • OLAP
  • Converter
  • C#
  • Desktop
  • Barcode
  • QR Code
  • ZUGFeRD
  • SVG
  • HTML
  • Open Source
  • Visual Studio
  • Script
  • Plugin
  • Report
  • FMX
  • Preview
  • Printing
  • WinForms
  • Interactivity
  • HTTPS
  • Toolbar
  • XLSX
  • Word
  • Linux
  • Business card
  • Windows
  • DBA
  • ARM
  • WPF
  • Email
  • Map
  • Visual Basic
  • Upload
  • Libgdiplus
  • ZPL
  • NuGet
  • Ubuntu
  • Web Storage
  • Academic
  • Blazor
  • SPA
  • Matrix
  • Web API
  • Cloud
  • ROSA Linux
  • M. Alaev
  • S. Antonenko
  • G. Bagaevski
  • A. Begunov
  • A. Fediashov
  • D. Fedyashov
  • P. Ishenin
  • O. Kojnikov
  • K. Kornienko
  • A. Mandrykin
  • M. Philippenko
  • S. Plastun
  • A. Syrykh
  • A. Tantzura
  • A. Tsyganenko
  • E. Voytenko
  • V. Yarovoy
  • D. Zubov

SQL

Raportowanie z PostgreSQL w aplikacji .NET 5 dla Debian 10
25 maja 2022
Marat Alaev
.NETVisual StudioFastReportLinuxCoreSQLNuGet

Z pewnością wielu potrzebuje rozwiązania, które będzie generować raporty dla systemów Linux, a także wspierać pracę z bazami danych typu SQL i nie tylko. My mamy takie rozwiązanie FastReport.Core. Biblioteka ta pozwala na tworzenie raportów pod różnymi dystrybucjami Linuk...

Jak wybrać najwyższe wartości w macierzy?
22 kwietnia 2021
Dmitriy Fedyashov
.NETFastReportSQLFilteringMatrix

Artykuł jest aktualny do wersji 2022.1. FastReport .NET posiada świetne narzędzie do wyświetlania danych w postaci zintegrowanej tabeli lub macierzy. Wielu z nas chciałoby poprawić funkcjonalność macierzy, np. o tak przydatną opcję jak wybór N najwyższych wartości. Wydaje się to tak proste, ...

Przekształcanie danych z bazy danych w dokument w Delphi / Lazarus / C++ Builder
3 lutego 2021
Michael Philippenko
VCLLazarusFastReportData SourceSQLFirebirdDelphi

Jak z gąszczu danych zrobić czytelny raport? Oracle DB, MySQL, Microsoft SQL Server, PostgreSQL, FireBird to prawdopodobnie najbardziej popularne, ale bynajmniej nie wszystkie, z wielu DBMS, w których dane mogą być tworzone, wypełniane, modyfikowane i zarządzane. Często są one wypełnione ...

Jak połączyć się z bazą danych Sybase SQL Anywhere
29 lutego 2020
Dmitriy Fedyashov
.NETFastReportData SourceSQL

Baza danych Sybase SQL Anywhere ma szereg przydatnych funkcji, które sprawiają, że bardzo się wyróżnia na tle konkurencji. Po pierwsze, umożliwia obsługę bardzo dużej ilości danych. Po drugie - jest wysoce produktywna i szybka nawet nie zważając na dużą ilość danych. Po trzecie nie wym...

How to connect to SQLCe
11 listopada 2019
Dmitriy Fedyashov
.NETFastReportData SourceSQLPlugin

Microsoft SQL Server Compact Edition is a simple local relational database that doesn't require installation, and the connection is made to the database file. You do not need admin rights to work with the base. You can only "password" the base. For many developers, such a simple database is simply n...

How to use SQL queries when creating an internal report data source in FastReport.Net report designer
2 września 2019
Dmitriy Fedyashov
.NETFastReportDesignerSQL

When creating a SQL database connection, you can specify a query to select filtered or combined data. The standard tools of the data source creation wizard also allow you to include parameters in the SQL query. In this case, the designation of the parameter will depend on the type of DBMS to which t...

Recursion in MS SQL
10 stycznia 2019
Dmitriy Fedyashov
SQL

Sometimes, a stored procedure or function is required to use the results of a sample several times. In such cases, we often use temporary tables. However, it is worth considering some advantages and disadvantages of temporary tables. Advantages: Temporary tables are full tables. Therefore, you c...

Window functions are what every T-SQL programmer should know. Part 2.
9 grudnia 2018
Dmitriy Fedyashov
SQL

In the second part of the article we will talk about the functions themselves, which are used to form values. The window function calculates the value from a set of data associated with the current row, that is, data from the same group, if Partition by is used. Conventional aggregate functions for ...

Window functions are what every T-SQL programmer should know. Part 1.
6 grudnia 2018
Dmitriy Fedyashov
SQL

Long time ago an interesting functionality appeared in Microsoft SQL Server 2005- window functions. These functions allow you to perform calculations in a given range of lines within a Select clause. For those who have not encountered these functions, the question arises - “What does window me...

How to use stored procedures in FastReport.Net
14 sierpnia 2018
Dmitriy Fedyashov
.NETFastReportSQL

In this article we will discuss the use of stored procedures to retrieve data for a report. Using the MS SQL example, I'll show you how to create and use functions in a report. As you know, Transact SQL allows us to create stored procedures and functions. Stored procedures are used to automate any ...

How to use dynamic queries in FastReport.Net
14 sierpnia 2018
Dmitriy Fedyashov
.NETFastReportSQL

Most users of FastReport.Net build reports receiving data from SQL DBMS, and would like to take advantage of Sql in their reports. Nothing prevents you from using dynamic queries, stored procedures and functions. In this article, we will have a look at how to use dynamic queries when creating a repo...

How to use SQL functions in FastReport.Net
14 sierpnia 2018
Dmitriy Fedyashov
.NETFastReportSQL

To obtain data in MS SQL, you can use sql queries, stored procedures, and stored functions. We have already discussed how to use dynamic queries and stored procedures as a report data source. In this article, we will create a table and scalar function and use them in the report. I recall that table...

logo
  • 800-985-8986 (English, US)
  • +4930568373928 (German)
  • +55 19 98147-8148 (Portuguese)
  • info@fast-report.com
  • 901 N Pitt Str #325 Alexandria VA 22314
  • Zamów
  • Pobierz
  • Dokumentacja
  • Opinie użytkowników
  • Jak odinstalować nasze produkty
  • FAQ
  • Tutorial Video
  • Forum
  • Support SLA
  • Articles
  • Our News
  • Prasa o nas
  • Partnerzy
  • Extended licensing
  • Kontakty

© 1998-2023 by Fast Reports Inc.

  • Poufność

Trustpilot