Hi all. I need your help.
In my db config I have code look like this
jdbc {
jdbc_connection_string => "jdbc:mysql//localhost:3306/mydb"
jdbc_user => "root"
jdbc_password => ""
jdbc_driver_library => "C:/servers/elasticsearch/con.mysql.jdbc_5.1.5.jar"
jdbc_driver_class => "com.mysql.jdbc.Driver"
parameters => { "like" => "Beethoven" }
statement => "Select* from users where name = :like"
}
This statement is test and my goal will be very larg sql with more than 4-5 join with dynamic columns and values, Please help me. Can I pass this parameters dynamicly ?. For example I am using Elasticsearch PHP Client library.
Thanks
Yuri