help access 2007 sql tables? [closed] - mysql

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
does anyone know where on access 2007 a function where i can access my sql database? i need it to create reports. thanks

Create an ODBC connection. In Microsoft Access, go to the File menu and select Get External Data and choose Link Tables... from the resulting menu.

As well as with linked tables as suggested by ocdecio, you could also do an "Access Database Project" - which is basically an Access front end to a SQL back end. If you did it this way, you could use all of your existing views, stored procs, functions, etc.

Related

How to export a database from MS access 2007 to MySQL? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I have created a database with multiple tables in MS Access.
I want the same database to be transfered to MySQL.
What are the steps to do it??
One way to do it would be to install the MySQL ODBC driver, configure an ODBC connection to your target database in MySQL, then use Access' "Export" feature to copy the tables over. I have used this process in the past, and it has usually worked reasonably well.

CREATE SCHEMA IN MYSQL [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have used the Create Schema in mySQL. But it act as a separate database. It doesn't affect the already created Databaase. How to create Schema in mySQL within an particular database in mySQL and need to group the tables within a schema.?
Can anyone know about this pls...??
I believe from recent experience and from a quick Google on the subject that a Schema IS a database in MySQL unlike other databases where the two are different. See the following links:
MySQL 'create schema' and 'create database' - Is there any difference
http://lists.mysql.com/mysql/211616
You can use CREATE SCHEMA/CREATE DATABASE and the USE dbname.

mysql no connection but why is this happening [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
In localhost/blah/index.php it lets me login, register accs, etc.
I uploaded my website it to my webhost.
I go to my website but i see no mysql connection.
It works fine on my localhost/phpmyadmin/xampp or w/e u call it
What is making this happen?
Finding a new webhost and or updating my php version is not an option
Maybe you use your local database settings. Update them to the server database settings.
Make sure you have MySQL on your server.
Check connection setting for MySQL on the server.
Upload or create database/table as required on the server.

Sending data from MS Access to a html form [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I would like to send data to a html form from MS Access.
I would like to do something like this:
http://webaddress/form.php?what=something
from Visual Basic. Can I do this?
I'll take a stab and assume that you are not hosting pages from your MS-Access Database.
What you need to do is reference the Microsoft Web Browser Control in your project, and pass the URL with the parameters to that control. You can then monitor the control to see if the server sent you error codes, and what messages came from the server.
Here's a link: http://support.microsoft.com/kb/304643

levenshtein and access database..how to integrate [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
could anyone help me how to integrate the levenshtein function in an accessdatabase, which I will be query-ing from vb.net later through normal sql statements.
I would like to be able to do a
SELECT levenshtein(colx, 'myinputword') AS dist FROM table WHERE dist < 3
or something like that...
I know on mysql one can create a custom function and call that afterwards, but I have no clue on how to do this in access.
or is this just not possible in access
It is possible to have custom functions in MS Access (UDF), but it is not possible to use the function outside of Access.