MySQL SHOW TABLE STATUS results
require 'rubygems'
require 'Mysql'
db = Mysql.connect('localhost', 'mysql', '*****', 'auto_reorder')
query = db.query("SHOW TABLE STATUS FROM auto_reorder LIKE
'customers';")
I'm trying to parse the results and get the Auto_increment. Any help is
appreciated
--
Posted via
http://www.ruby-forum.com/.
.
Relevant Pages
- Re: Problem with SQL and Recordset
... This assumes that the name of the subform control on the parent form is the ... NextSuffix field from the "query" to be entered into the Suffix field on ... Dim mySQL As String ... (microsoft.public.access.modulesdaovba) - Re: [Q]Problems related to the MySQL linked Server.
... The error messge when I query data with following SQL. ... select @v_intUserNo = uno ... where userid = 'testid' ... I have two questions about the linked server for the MySQL. ... (microsoft.public.sqlserver.odbc) - Re: Performance MySQL
... schicke erst den Query an die Datenbank ab, ... Möglichkeit von Concurrent Inserts nur MyISAM Storages ein. ... > MySQL bis jetzt noch nichts zu bieten. ... Welcher Tabellentyp? ... (de.comp.datenbanken.mysql) - Re: Library Cache
... procedures that determines the SQL to be submitted based on the ... query string to parse, whereas: ... it's HOW and WHEN that replacement occurs. ... (comp.databases.oracle.server) - Re: where to get mySQL questions answered?
... After resolving some performance issues with mysql in building initial ... soon as I add an OR to my WHERE x LIKE '%blah%' type queries. ... My php code dynamically builds an sql query. ... (comp.lang.php) |
|