News: LimeReport new version 1.5 has been released
Вышла новая версия LimeReport 1.5

Recent Posts

Pages: [1] 2 3 ... 10
1
Кто-то, вроде, начинал ваять обертку для питона.
Но подробностей не знаю...

Может, тебе стоит рассмотреть вариант просто собрать LR и заюзать его, как отдельное приложение?
Подробностей твоей архитекутры я не знаю, но если ты напрямую с БД работаешь, то, может, подойдет?
2
Коллеги, нужен генератор отчетов из реляционной базы данных (т.е. в основном потребуется многоуровневая группировка сформированных SQL-командами таблиц),
Подойдет ли для этого LimeReport  - для такой среды Python + PySide6 + PosgreSQL (Win'64) ?

если можно, дайте, пожалуйста, ссылку на  информацию, как установить и запустить LimeReport для такой среды
3
Поскольку расходы на содержание сайта полностью лежат на мне, проект Limereport почти не приносит дохода, а стоимость сертификатов стала неоправданно высокой, я принял решение отказаться от HTTPS.
4
При обращении к сайту https://limereport.ru/ по HTTPS выдает ошибку
Протокол не поддерживается. Клиент и сервер используют либо разные версии протокола SSL, либо разные наборы шифров.
ERR_SSL_VERSION_OR_CIPHER_MISMATCH
5
Discussion | Обсуждение / Re: Build error v 1.5
« Last post by n3mow on March 15, 2025, 05:11:43 pm »
I do not understand your answer. Would you please explain. Thank you.
6
Discussion | Обсуждение / Re: Build error v 1.5
« Last post by Subst on March 07, 2025, 07:12:44 am »
first - if you hash clicked to error message the text must expandning and wil be shown as obove

Code: [Select]
D:\QtProjects\TtxUiTool\src\TMainWnd.cpp:749: error: incomplete type 'QDateTime' used in nested name specifier
..\..\src\TMainWnd.cpp: In member function 'bool TMainWnd::parseSdlxFile(quint16, const QString&)':
..\..\src\TMainWnd.cpp:749:26: error: incomplete type 'QDateTime' used in nested name specifier
  749 |   quint64 now=QDateTime::currentMSecsSinceEpoch();
      |                          ^~~~~~~~~~~~~~~~~~~~~~


second - the problem with database - it's a problem of Qt, not LR

LimeReport will work with database if your Qt can work with it. The base build of Qt not supports all database formats.
But it's obout Qt not LR.

You can walk to telegram-group https://t.me/qt_chat and try to resolve proble, there.
But it's Russian-language group  ;D Must of members known English to some extent but home lang - russion  :)
7
Discussion | Обсуждение / Re: Build error v 1.5
« Last post by n3mow on March 04, 2025, 05:46:37 pm »
Sorry for the late response. The error occurs while building the .pro file in QtCreator. It shows at the bottom where the build progress messages appear. I have no idea what file generated the error, only that the build fails. How can I determine which file is throughing the error?

As to using my sql the appimage for Linux only supports Sqlite3. There is no other choice. It appears that the choice is only on the version that has to be built.

?Marty
8
Discussion | Обсуждение / Re: Build error v 1.5
« Last post by Subst on March 01, 2025, 09:32:11 am »
Hi!

Quote
Aggregate 'Qpainterpath ' has incomplete type and cnnot be defined'

in which file message appears?

Quote
Can I add support for mysql to Lime Report? Now I have to convert Access dtabase to mysql and the to sqlite. All responses are appreciated

LR is able to work with any database. Your application must work with database, LR can operated with models, transferred from main application code.
9
Discussion | Обсуждение / Build error v 1.5
« Last post by n3mow on February 28, 2025, 10:55:06 pm »
Tried to build Lime Report V 1.5 with QT Creator - Error "Aggregate 'Qpainterpath ' has incomplete type and cnnot be defined'". What can I do to fix this? Used the limereport.pro file in the packedge. I am new to building qt projects so I need a basic explanation of how to fix this error. Can I add support for mysql to Lime Report? Now I have to convert Access dtabase to mysql and the to sqlite. All responses are appreciated.

Thanks,
Marty
10
Discussion | Обсуждение / Re: how setting of boarder line dynamically
« Last post by Subst on December 05, 2024, 11:34:45 am »
Hi!
By using the script as the content of TextItem for example
Like this

Code: [Select]
$S{
  if (your_condition)
    THIS.borders=15;
  "simple_text";
  }

the Enum of borders is

Code: [Select]
enum BorderSide {
  NoLine = 0,
  TopLine = 1,
  BottomLine = 2,
  LeftLine = 4,
  RightLine = 8,
  AllLines = 15
  };
Pages: [1] 2 3 ... 10