answersLogoWhite

0


Best Answer

midd_log

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

2w ago

The username for accessing Gale databases typically depends on the institution or library that provides access. It is usually provided by the institution and may involve using your institution's credentials or a special username issued for accessing the database.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the username for gale database?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Information Science

What is a user name in a database?

A username in a database is a unique identifier assigned to a specific user to grant them access to the database. It is used to differentiate between different users and control their permissions and privileges within the database system.


Data base state vs database schema?

The database state refers to the current data stored in the database, including all records and their values. On the other hand, the database schema refers to the structure of the database, including tables, columns, constraints, and relationships. The schema defines how the data is organized and stored in the database.


What are names of databases?

Database names are the identifying names that users provide when creating a database. These names must be unique within the location in which they are cataloged. The name differentiates the database from any other database in either the local database directory or the system database directory


What diff between the database and database system?

A database is a collection of organized data, while a database system is a software application that manages, stores, and retrieves data from that database. The database system includes software for managing the database, as well as tools for interacting with the data, ensuring data integrity, and controlling access to the data.


How do you retrieve data from database in PHP?

To retrieve data from a database in PHP, you can use SQL queries. First, establish a connection to the database using MySQLi or PDO. Then, use SELECT queries to fetch data from the database tables based on your requirements. Execute the query and fetch the results using appropriate functions like mysqli_fetch_assoc() or PDO fetch().

Related questions

What is an oracle account?

Oracle is the name of a database, I would guess it is an account (username/password) on that database.


How do you connect mysql database with php program?

You can do that using the mysql_connect() function. For example: <?php $host='localhost'; //Your Host Name Here $username='root'; //MySQL Username $pass='';//MySQL Password $dbname='codenair'; //your Database Name //Connecting Database mysql_connect($host,$username,$pass)or die('Failed to Connect'); //Selecting Database mysql_select_db($dbname)or die('Database Not Found'); echo 'Connected'; ?>


What is the username and password for Oracle 9i?

You need to ask the DBA (Database Administrator) for that information.


How do you run a MySQL query from PHP file?

Here is a simple script that you can do to run a MySQL query after you have set a database up. <?php // Database Settings $db['hostname'] = "localhost"; $db['username'] = "<db username>"; $db['password'] = "<db password>"; $db['database'] = "<db name>"; // Connect to MySQL $connect = mysql_connect($db['hostname'], $db['username'], $db['password']); // Select Database mysql_select_db($db['database'], $connect); // Do MySQL Query mysql_query("INSERT INTO table_name SET field_name = '1234567890'"); // Close MySQL mysql_close($connect); ?> Obviously you will need to use your own MySQL settings and database details, but this gives you a general overview of how you can do it.


How do you retrieve username and password from sql database to HTML web page?

You would need to use PHP


How are the simple coding of php with database?

Working with mySQL databases: <?php // Connects to the database mysql_connect(servername,username,password); // Inserts into a database mysql_query(INSERT INTO table(cat1, cat2, cat3) VALUES(one,two,three)); ?>


How can i make a logging program and attach a database to it that when i insert a username and pass it goes on the database?

First create a form:Now create a page called login.php. The "name" field in the input is what goes to $_POST so the input named username is $_POST['username']. The value of the input is what the $_POST is.


What object must be created first when creating a database file?

To use the module, we need to create a connection object that represents the database, it needs to have a username, password, and host. Here are the steps to create a database: open Microsoft access, create a new database, save the file, and browse the new database menu.


How do you get data from a MySQL database with PHP according to a method id?

For example if we have database named "users", and we need user information from table "user_info", which has next parameters: 'userId', 'userName','Name','Age'. $sel = mysql_query("SELECT * FROM users.user_info WHERE userId='$methodId'"); $ar = mysql_fetch_array($sel); echo " User Id is:".$ar['userId'].", UserName: ".$ar['userName'].", Name: ".$ar['Name'].", Age: ".$ar['Age']." ";


Why would a person need to know the NOD32 password?

The software NOD32 requires a valid username and password for updating the virus database. This means that without a password and username, the software cannot provide complete security.


What is a user name in a database?

A username in a database is a unique identifier assigned to a specific user to grant them access to the database. It is used to differentiate between different users and control their permissions and privileges within the database system.


How do you fix MySQL error 1045?

Error 1045 is access denied with username/password. So you either have the username or password incorrect. It is possible, also, that you are trying to connect from a remote machine to a database to which remote access privilege has not been granted.