Paradigma Software announces Valentina Release 9.2 with improvements across all reporting, database and forms products. Continue reading Valentina Release 9.2 Updated SSH Library, Forms Improvements with MySQL and PostgreSQL, and Valentina DB
Category: Valentina SQL
Valentina Release 9.1.5 Improves Valentina Studio SQL Editor, Fixes, Updates for Valentina DB
Paradigma Software announces Valentina Release 9.1.5 including many improvements to Valentina Studio Pro and Valentina DB. Continue reading Valentina Release 9.1.5 Improves Valentina Studio SQL Editor, Fixes, Updates for Valentina DB
Valentina 8.7 Enhances SQL Editor, Diagramming & Schema Tools & Fixes
Paradigma Software Valentina Release 8.7 adds new, advanced features to the SQL Editor, Diagramming and more. Continue reading Valentina 8.7 Enhances SQL Editor, Diagramming & Schema Tools & Fixes
Valentina Release 8.6.6 Improves, Fixes Database & Reporting Solutions
Paradigma Software Valentina Release 8.6.6 is a fix update for 8.6.x products with improvements for Valentina Studio, Valentina Server and others. Continue reading Valentina Release 8.6.6 Improves, Fixes Database & Reporting Solutions
Valentina 8.6 Adds Parameters Tools to SQL Editor; Improved Editing of Form Objects, Improvements to Valentina Server, ADKs
Paradigma Software Valentina 8.6 adds advanced parameters editing to Valentina Studio Pro SQL Editor as well as several fixes and improvements. Continue reading Valentina 8.6 Adds Parameters Tools to SQL Editor; Improved Editing of Form Objects, Improvements to Valentina Server, ADKs
Valentina 7.5.4 Improves Valentina Studio, Valentina DB and C Integration
Also improves working with PostgreSQL and SQLite databases, available on macOS, Linux and Windows. Continue reading Valentina 7.5.4 Improves Valentina Studio, Valentina DB and C Integration
Valentina Release 7.4 Improves Imports, Valentina Server for ISPs
Hot summer eclipse weekend is now complete with Valentina Studio import and connectivity improvements & new PRO feature, license management for ISPs for Valentina Server and more. Continue reading Valentina Release 7.4 Improves Imports, Valentina Server for ISPs
Valentina Studio 7.1 Released with Javascript Automation, Code Generation, Excel Export and More
Major update of free Valentina Studio and Valentina Studio Pro for Linux, MacOS and Windows. Continue reading Valentina Studio 7.1 Released with Javascript Automation, Code Generation, Excel Export and More
Valentina 7: VARIANT Field
Another look at what’s coming in Valentina 7, again a new feature added to Valentina DB – the VARIANT field. Continue reading Valentina 7: VARIANT Field
Paradigma Software Releases Valentina 6.6
New ILIKE SQL keyword support, updated SQLite version and speed enhancements provide improvements throughout all Valentina products. Continue reading Paradigma Software Releases Valentina 6.6
[NEW] Generating Test/Bench Data for Data Focused Apps (Part 2)
We have implement Stored Procedure ‘GenerateDataFor()’, which solves the task described in the part1 of this article.
We have added into Valentina Wiki new section, where we will keep this and future other Stored Procedures By Paradigma Software.
On this page you can find link to WIKI page, which describes GenerateDataFor() procedure and contains download link.
[NEW] SQL expression function RAND_REGEXP()
We added a new SQL function RAND_REGEXP into v5.5.6 (available in the night_build or upcoming beta). This is very powerful function that can generate random strings of any kind, following some regular expression.
This function is useful for test and bench data generation features we will be talking more about.
Our wiki has coverage of this new function: RAND_REGEXP
[NEW] Generating Test/Bench Data for Data Focused Apps (Part 1)
There are several database tools available for generating records for table T with some random data. Usually these tools can…
- generate the test data itself;
- format the data for replication of some bug
Yes, both very useful. But as speed junkies and test pilots, we also want to use this feature to
- generate data for use in benchmarks
The difference between test and bench data, is that for benchmarking today, tomorrow and months or years later, we should generate the same records into a Table. Otherwise how we can compare results of a benchmarks as computer scientists? For tests it is okay to use random values in records, but benchmarks require exactness.
We were going to add such feature into Valentina Studio, but then we started thinking about benchmarking the Valentina engine (made in C++). It is clear then that we need such a feature right in the engine. So how to implement it?
Continue reading [NEW] Generating Test/Bench Data for Data Focused Apps (Part 1)
[NEW] Valentina DB engine – SELECT … FOR JSON
We made the first step in the direction to popular JSON format.
Valentina SQL already did have extentions
- SELECT … FOR XML
- SELECT … FOR REPORT
Now we adding one more: SELECT … FOR JSON.
We have upload 5.5b21 build where this feature is introduced. It works in same way as FOR XML. In the result you get cursor with a single record and a single TEXT field.
Example:
SQL query ‘SELECT * FROM tblCustomer FOR JSON’ returns
{ "name": "tblCustomer", "fields": ["fldFirstName","fldLastName","fldCountry","fldPhone"], "records": [ ["Peter","Thomas","Germany","111111"], ["Brian","Hill","USA","222222"], ["Simon","Smith","Italy","333333"], ["Chris","Maxwell","France","444444"], ["Greg","Silver","France","555555"], ["Jerry","Lucas","USA","666666"], ["Mark","Lord","Canada","777777"] ] }
[NEW][VSQL] MAIL Command
We have add a new command for Valentina SQL.
The main goal is to be able use Valentina Server as generator of PDF and/or HTML reports and sending them by email directly from VSERVER’s stored procedure. Besides, this command can be called by Event Scheduler of VSERVER or by a database or table trigger.
vext_mail : __MAIL __FROM character_string_literal_or_var __TO character_string_literal_or_var __SUBJECT character_string_literal_or_var __BODY character_string_literal_or_var [__ATTACH vext_attach_list] __SMTP character_string_literal_or_var __PORT character_string_literal_or_var [__USER character_string_literal_or_var, __PASSWORD character_string_literal_or_var] [__SSL truth_value_or_var] vext_attach_list : character_string_literal_or_var AS character_string_literal_or_var , ... character_string_literal_or_var : character_string_literal | variable_name uint_or_var : UINT | variable_name truth_value_or_var : truth_value | variable_name truth_value : TRUE | FALSE