Use Ruby database on Rails [closed] - mysql

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I created a mysql database with Ruby. I want to use it on my Rails app. How can I do it? How can I read data with Rails without any database?

Not sure what the real question is, but by default Rails uses a SQLite DB for development and testing. This can be changed in the database.yml file found in the config directory.
However I would really start here Rails Guides

Related

hello may I ask how can I connect MySQL database to Vb.net [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 days ago.
Improve this question
hello how can I make a system project using Vb.net and MySQL as my database how can I creat a system project I'm planning on making a billing system but I don't know where to start
I haven't tried anything yet but I'm still wondering how can I connect Xampp as my database to the system project that I'm planning to make does anyone have a system project in here can someone give me the source code or just simply help me please

Is it possible to restore databse from cpanel without backup? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Unfortunately i have dropped all table from a database of a WordPress website, but i have not any backup. Is it possible to restore all table from cpanel without backup?
Please help me.
I'm sorry to say that without a backup file there is nothing you can do. Did you try contacting your hosting company to see if they happen to have a backup? Sometimes they do.
I wish you luck.

Can I use Redis instead of Mysql in Magento? How? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I want to use Redis in Magento instead of mysql? I do like how to done it?
Good day.
Redis is not a replacement MySQL.
If you you want to use NoSQL with Magento, you must choose DB with guarantee the preservation to Storage
For Example - MongoDB

Codeigniter mysql_connect for Quercus resin [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I use Tomcat and Quercus.
Quercus want mysql_connect, How add mysql_connect argument?
mysql_connect() has been deprecated as of PHP 5.5.0 as per the below document
http://php.net/manual/en/function.mysql-connect.php
Make sure why you need mysql_connect to do it. The betterway to connect MySQL it is by using mysqli_connect.
Codeigniter provides the facility for mysqli by default. You just need to create a model as specified here

Mysql/Jsp accessing database [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I was able declare my forms variable and also establish a connection to my MySQL Database, but when I ran the program it give me error Class.forName not found. Meanwhile, I think the syntax is correct:
Class.forName("com.mysql.jdbc.Driver").newInstance();
So what is the possible solution and the possible cause of such an error?
This means that the mysql JDBC driver is not included in your classpath.
have you put the MySQL jar to the project classpath or to the web container lib folder?