Version 0.9.5 beta - update for database functionality, updated the db.class.mask, and the mysql autogeneration for files.

This commit is contained in:
Stephan Kasdorf
2019-12-29 20:28:19 +01:00
parent e655936d3f
commit 6010342ad6
4 changed files with 32 additions and 9 deletions

View File

@@ -20,7 +20,7 @@ class [CLASSNAME] extends Db
public function __construct()
{
[ADAPTER]::settingsSection('[DBSECTION]');
[CONNECTOR]::settingsSection('[DBSECTION]');
self::initTable( self::TABLE );
}
@@ -29,8 +29,4 @@ class [CLASSNAME] extends Db
return self::TABLE;
}
public function insertArrayIntoTable($dataset = array())
{
// TODO: Implement insertArrayIntoTable() method.
}
}