Forum Moderators: open
Is it even possible to access the database, it is the software that is proprietary right? Not the database, so I should be able to access the database with the utilities just like an access database? Well not just like....I know....
I havent used sql before but i would assume that it will be very similar to the MS Access method so here goes (using asp).
Have a page that recieves the variables eg. insert_into_db.asp, on this page get all your variables by the request.form("variable_name") method.
next open a connection to the database and run an sql query to insert these variables into it, like so.
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open(Server.Mappath("your_database.mdb"))
sql = "INSERT INTO table (Value_1) VALUES ('Variable_1')"
conn.Execute sql
conn.close
then you can redirect back to any page.
Hope this helps, i know that it isnt for sql but maybe someone else can expand on this to incorporate it for your needs.
Ally
You can connect to all mainstream databases using OLEDB. Take a look here for the connection string you need...
Here's a guide to SQL queries...
[w3schools.com...]
Here's a guide to connecting to a database with ASP and ADO...
[jansfreeware.com...]
If you need web access the SQL Server needs to be published, if this is an in-house system it probably isnt published so your first task might be to do that safetly i.e set up a DMZ or VPN.
Once the SQL can be connected to ,if you are not a programmer put some ready made ASP scripts on a Windows server and point the config file to the SQL server. Start with something like TableEditor from Aspin.com.
I was looking at the Enterprise manager last night and found most of how they have set up their database. So if I wanted people to fill out their demographics online before they come for a visit, and create a web page with a form on it I should be able to map those fields right into the database and it show up in the software the same as everyone else's, I hope....You guys are great, best place on the web!
I guess that PHP would be the best language to use on the web forms...I use Dreamweaver so maybe there is a way I can utilize that program to help in this little venture...
Did I say I love you guys!
I know some products does have this, Saleslogix for example has slapi.dll for ASP developers to integrate. If you bypass this & insert direct to the tables it screws up all the synchroniation.