How do I make a connection to an MS Access database using Codegear C++ builder (2007) - ms-access

This seems to be the hardest thing to get help with - there are no books, no useful google results, and borland's own help facilities are far to complicated for me to isolate the answers I need.
I want to make a connection to an already existing microsoft access database using builder.
I want to be able add/delete/read the records. that's all.
Or failing that. how do I create a simple database/table using builder. It would be ideal if I had an application that could create a table if it didn't already exist, then use that table from that point onwards.
I want to avoid creating DSNs. I want direct access to the database from builder.
If you could point me in the direction of a good online tutorial for this that would be a start. If you could actually provide the help yourself (ie tell me how to do it, rather than show me an article) that would be great and I'd be very greatful.

in portuguese:
http://www.caloni.com.br/blog/archives/banco-de-dados-no-c-builder
see if fits your question

Have you looked at the VCL's ADO components yet? TADOConnection, TADOCommand, etc.

Related

Can I use MySql with SignalR?

Goodmorning,
is there anyone that has already developed something about how to insert, update or select chat conversation in asp.net with MySql database?
I found SqlDependency class open source, then MySqlDependency that is like 100$ each year.
Still nothing open source for Mysql db?
I tried to develop something, my idea was just, insert or update the db when the client leave or change the page but there is nothing about event on change url domain with javascript.
I never thought that it could be so difficult to develop a chat.
Can some good people help posting some code about this?
Thank you very much
it's actually very easy if you get the concept. you can check the video from here: https://www.youtube.com/watch?v=8Fxm_54j-h8 and also you can find the code in the description.
although it's written on Entity Framework core with SQL server provider. you can just change the provider for MySQL and it'll work.

Is there a way to embed or include a database file into an html file? If not is there another way I could do something similar?

I'm trying to make a website for an assignment. In this assignment, I have to include examples of some of my work and I want to include a database I made in Microsoft Access, is there anyway I could do this? It preferably has to be in html. The database is just a table, a form and a report.
HTML can't to connect to database alone, you should to use other tecnology together to this be possible, a better way to do it in a web system is to connect through a API, if not know about, google it, have a lot of documentation and tutorial to make modern restful API, for your case that is using microsoft access I found this Microsoft tutorial maybe can help you.
-> https://support.microsoft.com/en-us/help/308459/how-to-connect-an-html-page-to-a-microsoft-access-database

Programs to create input for SQL database

I am recreating an old database that's in MS Access with company data, contacts, conventions etc. but I have never done something like this. In the past few days I learnt to use MS Access and started recreating the tables to fit third form, creating table relationships etc.
But I got stuck when I started searching for a program/programs that could help me create an easy to use visual input form like in MS Access sparing me from having to delve into SQL and HTML.
I am not a native english-speaker so I couldn't really word what I wanted sufficient enough to find related google hits, I have found applications like Aptana Studio, Heidi SQL, Dreamweaver and so on. My question is, is there a program where I can manage the tables inside the database, create forms to input data with, all (if possible) wih a drag-and-drop designer?
I would be grateful for any number guides you guys have links for, because I just couldn't find what I wanted (possibly because of my still lacking programming expertise). Any guides touching on the topic of how to create input sites with HTML/CSS for an SQL database would also helpful if it's not possible to do without using these languages.
Thank you in advance.
Visual Studio, with SQL Server, has all of the features that you are asking for. There are free versions of both, but with limitations.
You can also use a Java and MySQL solution. To manage the database, use MySQL Workbench. For an IDE that has a drag-and-drop designer, use either NetBeans or Eclipse. For more information on either, google "Netbeans form designer" or "Eclipse form designer."
For creating and managing databases you can use the "Sql Server management studio" itself.
If you have MS office, you can use "InfoPath" to create forms and connect them to the Sql Server database. Check this link out which shows how to do it :
https://www.mssqltips.com/sqlservertip/4246/data-entry-for-sql-server--building-quick-efficient-data-input-forms-using-infopath/

How to setup Microsoft Access as a POS system for 3Dcart?

I'm helping out with an 3Dcart eCommerce/online store doing basic web administration tasks analyzing their data. Their POS system is manged manually with Excel at the moment, and so updating information has become pretty time consuming. I want to know if it's possible (and if so how) to connect/integrate 3Dcart's database system and be able to use Microsoft Access for the programming in order to be able to merge tables/databases more seamlessly and work more efficiently.
Is this possible? Are their any online resources that show how to integrate Microsoft Access as a POS system (with 3Dcart specifically if possible) or could anyone describe how to do so?
3dcart allows you to import your products using the Import/Export feature from a CSV file. But it seems like there is no way to make it work with Access automatically. Also I've found this service http://www.file2cart.com/shopping-cart-data-import-options/6265-import-excel-to-3dcart
Maybe it will be helpful for you. And finally you can contact these guys Smart POS and ask them for help.

Classic ASP with Oracle Database

I am new to Classic ASP. Since last week I am working with this technology. Could you please help me on the following questions with simple examples.
Questions:
Fetching some data from oracle database and displaying it in various textbox controls and labels.
View and updating the data.
How to fecth the database table and display it in a grid or any control.
I have done some R&D but am unable to get the exact flow of it. It's totally insane so help me on this. Please suggest me some websites or links to get more into it.
Thanks for your time.
-Padmanaban
You have to use ADO
Here some tutorials :
http://www.w3schools.com/ado/ado_examples.asp
Specific to oracle :
http://support.microsoft.com/kb/255043