eloquent 3.2.1 copy "eloquent: ^3.2.1" to clipboard
eloquent: ^3.2.1 copied to clipboard

eloquent query builder port from PHP Laravel

1.0.0 #

  • Initial version

1.1.0 #

  • implemented tryAgainIfCausedByLostConnection

1.1.1 #

  • fix bugs on detects_lost_connections

1.2.0 #

  • fix bugs and update dargres to 2.2.4

1.2.1 #

  • fix parameter type of column orWhere

2.0.0 #

  • implemented Connection pool with option to automatically reconnect in case of connection drop
final manager = Manager();
  manager.addConnection({
    'driver': 'pgsql',
    'host': 'localhost',
    'port': '5432',
    'database': 'database',
    'username': 'username',
    'password': 'password',
    'charset': 'latin1',  
    'schema': ['public'],
    'pool': true, //new
    'poolsize': 2, //new
    'allowreconnect': true, //new   
  });

2.0.1 #

  • fixes critical bug in version 2.0.0 that caused stack overflow, timeout parameters were removed from query execution methods

2.0.2 #

  • fix bug on set application_name to postgresql < 8.2

2.0.2 #

2.1.0 #

  • change dependencie postgres to my fork postgres_fork
  • add more tests

2.1.1 #

  • small improvement and optimization in postgres PDO implementation

2.1.2 #

  • remove print from disconnect() in Connection class

2.2.0 #

  • add fromRaw (sub-query as from), joinSub (method to join a query to a sub-query)

3.0.0 #

  • implemented support for mysql through the 'mysql_client' package and also implemented support for posgress with the postgres v3 package, now you can choose the driver implementation through 'driver_implementation': 'postgres_v3', in addConnection method

3.0.1 #

  • fix bug on query builder count()

3.1.2 #

  • fix bugs in lost connection detection to automatically reconnect. Updated postgres to 3.1.2 to be able to use the onOpen callback to configure connection settings like setting search path

3.2.0 #

  • fix bugs in onOpen callback to configure connection settings
  • improvements to README
  • implemented connection pool for 'postgres' (v2) driver_implementation

3.2.1 #

  • fix bug on format Schema
8
likes
130
pub points
67%
popularity

Publisher

unverified uploader

eloquent query builder port from PHP Laravel

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

dargres, enough_convert, intl, mysql_client, postgres, postgres_fork

More

Packages that depend on eloquent