Required External Jar: mysql-connector-java-5.1.40-bin.jar to connect to Data Base.
Add this jar by right clicking the project -->Build Path--> Add external Archieve.
Create the Flow as Flowing
2) Database Connector Configuration:
Select MySQL as your database by double clicking the Data...
Step1 Message Flow:
[![enter image description here][1]][1]
Step 2: Databse Connector Configuration
For this you need mysql-connector-java-5.1.40-bin.jar .
Right click on Project -->build Path--> Add external archieve and add the jar(without jar it cannot be connected)
Enter all the value...
Use Redirect to force users to connect to the secure URL.
<VirtualHost *:80>
ServerName example.com
SSLProxyEngine on
Redirect permanent / https://secure_example.com/
</VirtualHost>
The rest of the configuration can be put in the ssl virtual host (port 443) since ever...
Debugging starts with understanding the code you are trying to debug.
Bad code:
int main() {
int value;
std::vector<int> vectorToSort;
vectorToSort.push_back(42); vectorToSort.push_back(13);
for (int i = 52; i; i = i - 1)
{
vectorToSort.push_back(i *2);
}
...
Static analysis is the technique in which on checks the code for patterns linked to known bugs. Using this technique is less time consuming than a code review, though, its checks are only limited to those programmed in the tool.
Checks can include the incorrect semi-colon behind the if-statement (i...
To fetch large data we can use generators in pandas and load data in chunks.
import pandas as pd
from sqlalchemy import create_engine
from sqlalchemy.engine.url import URL
# sqlalchemy engine
engine = create_engine(URL(
drivername="mysql"
username="user",
...
GitHub Flavored Markdown (sometimes abbreviated to GFM) makes it easier to work with markdown on GitHub.com.
Key features of GFM include:
code indentation
task list support
easy GitHub issue referencing
automatic GitHub username and SHA detection
automatic url detection
emoji support
GFM...
Let's say we want to console.log each time the component mounts:
hocLogger.js
export default function hocLogger(Component) {
return class extends React.Component {
componentDidMount() {
console.log('Hey, we are mounted!');
}
render() {
return <Component {...this....
Include the plugin from a CDN or locally after including jQuery. Then attach the .validate() method to the form in order to initialize the plugin. Within this method you can define your rules, custom messages, and other options.
<script type="text/javascript" src="//cdnjs.cloudf...
(defrecord Logline [datetime action user id])
(def pattern #"(\d{8}-\d{2}:\d{2}:\d{2}.\d{3})\|.*\|(\w*),(\w*),(\d*)")
(defn parser [line]
(if-let [[_ dt a u i] (re-find pattern line)]
(->Logline dt a u i)))
Define a sample line :
(def sample "20170426-17:20:04...
This example shows how to embed some basic C# into a PowerShell script, add it to the runspace/session and utilise the code within PowerShell syntax.
$code = "
using System;
namespace MyNameSpace
{
public class Responder
{
public static void StaticRespond()
{
...
This example shows how to embed some basic C# into a PowerShell script, add it to the runspace/session and utilise the code within PowerShell syntax.
$code = @"
Imports System
Namespace MyNameSpace
Public Class Responder
Public Shared Sub StaticRespond()
Console....
The NgFor directive instantiates a template once per item from an iterable. The context for each instantiated template inherits from the outer context with the given loop variable set to the current item from the iterable.
To customize the default tracking algorithm, NgFor supports trackBy option. ...
I found this to be the way to properly nest children routes inside the app.routing.ts or app.module.ts file (depending on your preference). This approach works when using either WebPack or SystemJS.
The example below shows routes for home, home/counter, and home/counter/fetch-data. The first and l...
One common scenario is to wait for a number of requests to finish before continuing. This can be accomplished using the forkJoin method.
In the following example, forkJoin is used to call two methods that return Observables. The callback specified in the .subscribe method will be called when both O...