Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: glprog/MiniREST
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.4
Choose a base ref
...
head repository: glprog/MiniREST
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 13 commits
  • 19 files changed
  • 1 contributor

Commits on Oct 4, 2019

  1. Copy the full SHA
    8813171 View commit details

Commits on Oct 27, 2019

  1. Fix clear params on set SQL

    glprog committed Oct 27, 2019
    Copy the full SHA
    3e47290 View commit details

Commits on Nov 9, 2019

  1. ConnectionQueueCount and ConnectionFactoryLogger (#4)

    ConnectionQueueCount and ConnectionFactoryLogger
    glprog authored Nov 9, 2019
    Copy the full SHA
    aa68589 View commit details

Commits on Jan 4, 2020

  1. Copy the full SHA
    c218378 View commit details

Commits on Feb 11, 2020

  1. Copy the full SHA
    f521b78 View commit details

Commits on Feb 19, 2020

  1. Invalidate connections (#7)

    glprog authored Feb 19, 2020
    Copy the full SHA
    301ad9b View commit details

Commits on Feb 24, 2020

  1. FixServerHostName (#8)

    glprog authored Feb 24, 2020
    Copy the full SHA
    48eb0be View commit details

Commits on Mar 21, 2020

  1. Copy the full SHA
    0968ac9 View commit details

Commits on Apr 18, 2020

  1. Fix controle transação

    glprog committed Apr 18, 2020
    Copy the full SHA
    0267c67 View commit details

Commits on May 12, 2020

  1. Copy the full SHA
    78864a9 View commit details

Commits on Jun 26, 2020

  1. Copy the full SHA
    32ca238 View commit details

Commits on Jun 29, 2020

  1. Implementações (#13)

    glprog authored Jun 29, 2020
    Copy the full SHA
    6beb45b View commit details

Commits on Aug 30, 2020

  1. 'SQLite' (#15)

    glprog authored Aug 30, 2020
    Copy the full SHA
    ea31707 View commit details
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -152,3 +152,4 @@ backup/
heap.trc
log.txt
MiniRESTSQLTest.xml
/unittest/SQL/logPool.txt
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -59,7 +59,7 @@ module.exports = function(grunt) {
tasks: ['bgShell:sql']
},
sql_fpc: {
files: ['**/*.pas'],
files: ['*.pas', 'unittest/SQL/*.pas'],
tasks: ['bgShell:sql_fpc']
},
orm: {
@@ -74,5 +74,5 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');

grunt.registerTask('default', ['watch:server']);

grunt.registerTask('test_sql_fpc', ['bgShell:sql_fpc']);
};
Loading