Graph Database neo4j connectivity with HTML form - html

how do I connect my graph database with my HTML form so that the data from my form enters the database.I have just started using Graph Database.

You have to query your graph via on of the offered apis as described at http://www.neo4j.org/develop/drivers (Java, PHP, ..)
Nice starting-lecture is the book offered (for free) at http://www.neo4j.org/learn

Related

how do i store and retrieve form data from a wesbite

this is probably something i could have googled; however i thought id start getting more active on chat forums so basically...
I'm almost done with making a family members business website, on the website is an enquiry form; i want to know how i go making that form store the data its given and how i would then retrieve that data?
still doing final touches to the design then im going to start learning the process of deploying it live which is why im posting here to see how to go about it.
It is very vast question, You will need an API to pass the data from Forms to API Server and a Database, that will store the data. It is also called client-server architecture.
Web Forms -> API Server -> Database
You can use either node express, java, python or any language to create API.
You can install the database on the server where you will run the API or you can use any from the cloud like AWS or Heroku, that way you will skip some setups and it will be ready to be used directly in the API.
To store data from an HTML form, you will need a server-side language and a database to save the data to. Some popular options for the server-side language include PHP, Java, and Python.
Once you have chosen a server-side language, you can use it to write code that will process the form data when the form is submitted. This typically involves connecting to a database, creating a table to store the data in, and then inserting the form data into the table.
To retrieve the data from the database, you will need to use a SQL query to fetch the data from the table. You can then use the server-side language to display the data on the website as needed.
It's a good idea to also consider security when handling form data. Make sure to validate and sanitize the form data to prevent any potential security vulnerabilities.

is there a way to write Salesforce Devoloper Console like scripts on a mysql database?

in salesforce I was able to create scripts that could filter and manipulate data and then export a result. I'm new to mysql and I was wondering if there was a similar tool that uses some programming language to do the same?
here's an example of a salesforce script written in apex just to know what I mean:
Salesforce implements a non relational database and a especific language to access to it called Salesforce Object Query Language (SOQL), very similar to SQL
APEX es a Java-like language to call that kind of queries (and more things). The advantage is that the same server hosts the db and the APEX server.
In mysql you have the freedom to choose any language (PHP, Java...) to access the data, but you have to install your own application server (apache, nginx...) to deploy your
scripts.
Hope it helps

Import data from transaction CKIS

Does anybody have any knowledge of how to extract data from SAP system through VBA?
I would like to extract data from eg. CKIS (product costing).
It would be helpful with any kind of code, that would connect me to SAP system.
You should have a look at SAP Gui Scripting. Check the link VBA pulling data from SAP for dummies for some useful information.
SAP Gui Scripting can be used with VBA to pull data from the SAP System

Populate excel data on html page

I'm newbie to the tech world. I need some information on how to do this.
1) We have data in excel sheet(where actively data changes are done like edit, delete, input data )
2) We have html page where when we enter login of a employee all the information about that employee should be shown on webpage with the information from above excel sheet.
I don't know php, .net etc. Simply I can do html and a little java script.
Please help me with this.
I read you problem, and here is my help.
First you have to know that excel files are difficult to use in other programs.
They are maybe APIs out there like google docs or microsoft office that can help you extract data from an excel file but this is not easy and not a long term solution.
I assume you are using excel because it is an easy way to input data and see that data. You should consider creating a database with access, that has a similar interface. In the options you should chose sql as format. You should learn a bit about sql.
Once you have a sql file that contains all the data that previously was in your excel file, go learn the basics of a server side language like node(node is javascript with server functionality) for instance.
Then write a html template that works for a employee.
When server is requested information from an employee you populate that html template with data found in the sql database. To find data in sql it is very easy once you know the basics of sql.
Forget the excel and enter new data exclusively in the sql database file(s).
You can do that with access or other tools.

How to grab information from a site using Microsoft Access, or other program?

I have a database in Access with my movie collection and a very "professional" look. I would like to have a way to inform the IMDB's number of a movie and grab the information from the internet. Is there a way to read a page or download a page to read in automatically with MS-Access? If not, what language I should learn to have a database with this property?
I would take a loot at this project implementing a IMDB API. It's .NET based so you should be able to integrate it with Access or any other C# or VB.NET application accessing your MSACCESS database.