MySqlDatabaseManager - nabrezzelt/HelperLibrary GitHub Wiki
MySqlDatabaseManager
is like the name already said, a small Database-Connector that can be used for MySQL-Databases.
Its easy to use and can handle multiple database-connections.
If you want to prepare multiple statements and store them, you should maybe check out the MySqlDatabaseManagerV2
.
MySql.Data (Vers.: 6.9.11, not 6.10.*)
You can donwload the latest .msi for Vers 6.9.* from the MySQL-Website
Install-Package MySql.Data -Version 6.9.11
The instace of the that database-connector is stored internal by the MySqlDatabaseManager with a specified name.
//Create instance with a specified name:
MySqlDatabaseManager.CreateInstance("auth-db");
//If no name is given a default name is choosen
MySqlDatabaseManager.CreateInstance();
To get a prevoiusly created instance you can use the .GetInstance(string name)
of the MySqlDatabaseManager class.
//Get instance with a specified name:
MySqlDatabaseManager authDbInstace = MySqlDatabaseManager.GetInstance("auth-db");
//If no name is given the connection with the default name is returned
MySqlDatabaseManager defaultInstance = MySqlDatabaseManager.GetInstance();
To open the connection to the database simply set the logincredentials with SetConnectionString
and call Connect()
As everybody knows, to read data from database you run a SELECT
-Statement. The same here...
MySqlDataReader reader = defaultInstace.Select("SELECT * FROM users WHERE user_id = 1234");
If you want to insert, update or delete data in your database, there is a method for all these three commands:
instance.InsertUpdateDelete("INSERT INTO users (username, password) VALUES ('john-doe', '123456')");
This is the simple html markup. The file input is optional but it provides an alternative way to select files for the user(check the online demo to se how to hide/style it)
<div id="drop-area">
<h3>Drag and Drop Files Here<h3/>
<input type="file" title="Click to add Files">
</div>
<script src="/path/to/jquery.dm-uploader.min.js"></script>
$("#drop-area").dmUploader({
url: '/path/to/backend/upload.asp',
//... More settings here...
onInit: function(){
console.log('Callback: Plugin initialized');
}
// ... More callbacks
});
Down below there is a detailed list of all available Options and Callbacks.
Additionally, after initialization you can use any of the available Methods to interact with the plugin.
-
queue: (boolean)
Default true
Files will upload one by one. -
auto: (boolean)
Default true
Files will start uploading right after they are added. If using thequeue
system this option means thequeue
will start automatically after the first file is added.Setting this to
false
will require you to manually start the uploads using the API Methods. -
dnd: (boolean)
Default true
Enables Drag and Drop. -
hookDocument: (boolean)
Default true
Disables dropping files on $(document).This is necessary to prevent the Browser from redirecting when dropping files.
The only reason why you may want to disable it is when using multiple instances of the plugin. If that's the case you only need to use it once.
-
multiple: (boolean)
Default true
Allows the user to select or drop multiple files at the same time. -
url: (string)
Default document.URL
Server URL to handle file uploads (backend logic). -
method: (string)
Default POST
HTTP method used by the upload request. -
extraData: (object/function) Collection of parameters to add in the upload request.
// Example extraData: { "galleryid": 666 }
If you need a dynamic value this can be set as a
function
. Also, if this function returnsfalse
nothing will be added.// Example extraData: function() { return { "galleryid": $('#gallery').val() }; }
-
headers: (object) Collection of headers to send in the upload request.
// Example headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') }
-
dataType: (string)
Default null
Response type of the upload request.Default is
null
which means jQuery will try to 'guess' depending of what the server returns.Other values can be:
xml
,json
,script
,html
ortext
Reference: http://api.jquery.com/jquery.ajax/
-
fieldName: (string)
Default 'file'
Field name in the upload request where we 'attach' the file.// For example in PHP if using the default value you can access the file by using: var_dump($_FILES['file']); // 'file' correspond to the value of this option.
-
maxFileSize: (integer)
Default 0
File validation: Max file size in bytes. Zero means no limit.maxFileSize: 3000000 // 3 Megs
-
allowedTypes: (string)
Default "*"
File validation: Regular expression to match file mime-type.allowedTypes: "image/*"
-
extFilter: (array)
Default null
File validation: Array of allowed extensions.extFilter: ["jpg", "jpeg", "png", "gif"]
-
onInit: () Widget it's ready to use.
-
onFallbackMode: () Triggers only when the browser is not supported by the plugin.
-
onDragEnter: () User is dragging files over the drop Area.
-
onDragLeave: () User left the drop Area.
This also triggers when the files are dropped.
-
onDocumentDragEnter: () User is dragging files anywhere over the $(document)
-
onDocumentDragLeave: () User left the $(document) area.
This also triggers when the files are dropped.
-
onComplete: () All pending files are completed.
Only applies when using
queue: true
. See options.Triggers when the queue reaches the end (even if some files were cancelled or gave any error).
All these include id
id
(string): Unique ID. Useful to identify the same file in subsequent callbacks.
-
onNewFile: (id, file) A new file was selected or dropped by the user.
-
file
(object): File object, use it to access file details such as name, size, etc.For reference click here.
-
If multiple are added, this gets called multiple times.
-
File validations were already executed.
-
If a return value is provided and is
=== false
the file will be ignored by the widget. -
Use this return value to implement your own validators.
-
-
onBeforeUpload: (id) Upload request is about to be executed.
-
onUploadProgress: (id, percent) Got a new upload percentage for the file
percent
(integer) : 0-100 -
onUploadSuccess: (id, data) File was successfully uploaded and got a response form the server
data
(object) : Upload request response. The object type of this parameter depends of:dataType
See more in options.
-
onUploadError: (id, xhr, status, errorThrown) An error happened during the upload request.
xhr
(object) : XMLHttpRequeststatus
(integer) : Error type, example: "timeout", "error", "abort", and "parsererror"errorThrown
(string) : Only when an HTTP error occurs:Not Found
,Bad Request
, etc.Reference: http://api.jquery.com/jquery.ajax/
-
onUploadComplete: (id) The upload of the file was complete.
This triggers right after
onUploadSuccess
oronUploadError
. In both cases. -
onUploadCanceled: (id) Upload was cancelled by the user.
This one triggers when cancelling an upload using one of the API methods.
See more in methods.
-
onFileTypeError: (file) File type validation failed.
Triggers when using the setting:
allowedTypes
.See more in options.
-
onFileSizeError: (file) File size validation failed.
Triggers when using the setting:
maxFileSize
.See more in options.
-
onFileExtError: (file) File extension validation failed.
Triggers when using the setting:
extFilter
.See more in options.
There are a few methods you can use to interact with the widget, some of their behavior may depend on settings.
-
start: (id) Start the upload. (id is optional)
Depending on the situation this method may do:
- Start the upload of an individual file if an
id
was provided and there isn't aqueue
running. - Retry a failed or a previously cancelled file.
- Start the queue if
auto
is set tofalse
and noid
is provided - Start ALL the pending files if
queue
is set to falsefalse
Example:
$("#drop-area").dmUploader("start", id);
- Start the upload of an individual file if an
-
cancel: (id) Cancel the upload. (id is optional)
Depending on the situation this method may do:
- Cancel a file that is currently uploading if an
id
is provided. - Cancel all currently uploading files if an
id
is NOT provided. - Cancel a pending file, and it it will be skipped by the
queue
if using that option - Stop the current
queue
if using that option, and all current uploads.
Example:
$("#drop-area").dmUploader("cancel", id);
- Cancel a file that is currently uploading if an
-
reset: () Resets the plugin
- Stops all uploads
- Removes all files
- Resets queue
Example:
$("#drop-area").dmUploader("reset");
-
destroy: () Destroys all plugin data
- Stops all uploads
- Removes all files
- Releases all the events, including the ones used by
hookDocument
if using that option
Example:
// Example $("#drop-area").dmUploader("destroy");