Mysql: list tables

Hello
I need to print out a list of tables in my mySQL database.
My code:
<%@ page language="java" import="java.sql.* " %>
<html>
<body>
<%
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql:///billeder", "password", "username");
DatabaseMetaData dmd = con.getMetaData();
ResultSet rs = dmd.getTables("billeder", null, null, null);
%>
</html>
</body>
Is this ok? and what else do I need??
I cant figure out how to printout tthe list of tables??

<%@ page language="java" import="java.sql.* " %>
<html>
<body>
<%
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://billeder", "user", "password");
DatabaseMetaData dmd = con.getMetaData();
String[] tableTypes ={"TABLE"};
ResultSet tables = dmd.getTables(null,null,null,tableTypes);
while (tables.next() )
     String str = tables.getString(3);
     String oneLine = "Table " + str;%>
     <%= oneLine %> </br>
<%}
con.close();
%>
</html>
</body>

Similar Messages

  • How do you display the contents of the "dial list table"?

    We are starting to make use of the Outbound Dialer functionality.  We've setup a TEST campaign with a TEST queue with TEST Agents in the queue.  We can upload contacts into the campaign but once we've done that it appears we have little or no visibility as to what is going on with the Dial List.
    So far I have been unable to find a way to display the Dial List Table to see what is going on.  Is there any easy way to do this or is it necessary to write custom SQL queries to get this information from the Database?  I have a case open with the TAC but so far they don't seem to be able to answer this nor have they offered any other tools to manage and monitor the Outbound Dialing.  (The Realtime and Historical Reports are way short of useful info, IMHO.)

    Hey Beau,
    David and Octavian are correct, if the default historical/real time reports are not enough information, you will need to do some digging into a custom SQL query.
    From the command line, queries can be run with "run uccx sql db_cra [SQL COMMAND]".
    For reference, the DB Schema Guide for the dialing list table will be your best bet in creating the query, and the queries can be run on the CLI to test the output. This can be found here:
    http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/crs/express_8_0/user/guide/uccx801dbschema.pdf
    Starting on page 35. This lists all of the entries and columns that can be found in the table, as well as any related tables.
    Hope this gives you a good starting point. Let me know if you have any other questions.
    Regards,
    David King

  • How to get the list of database Views modifying the DB tools list tables.vi

    Hi,
    I have a problem, I just started using LabVIEW and in particular the LabVIEW connectivity toolkit and I am lookig fgor suggestion regarding how to get the list of database Views modifying the DB tools list tables.vi...
    Thanks in advance,
    Michela

    Hi Michela,
    since the VI you want to modify is part of a Toolkit, I suggest you to copy the whole block diagram in a new VI and then save it in a new location.
    Place the DB List Tables.vi on a block diagram, double click on it and go to the tab "Window -> Show Block Diagram "
    Select "Edit -> Select All" to select the whole block diagram and select "Edit -> Copy"
    Open a new VI and select "Edit -> Paste"
    Save the new VI
    In this way you can modify everything you want without overwriting the Toolkits VIs.
    Hope this can help.
    Regards, 
    Andrea N.
    Systems Engineer ATE & RF - Mediterranean Region
    National Instruments Italy

  • How to list table name of src db?

    hi all:
    I debug a mapping ,
    1) owb warnning: can not find source;
    2) I click "edit" button;
    3) owb show a new window,I click "browser" button;
    4) I choose a source datebase link
    so owb should list table name of src db,
    but owb don't list table name of src db,why?

    Hi,
    You can get the details from table "T001K". to fulfill your requirement.
    Hence forth if you want field name : you can click on that field and then hit key "F1",  and then click on icon "Technical Information".
    Hope so this solves your problem.
    Regards,
    Joginder

  • Quering MySql DB tables using DB adapter in Oracle SOA

    Hi',
    I am trying to query MySql DB tables using DB adapter in Oracle SOA.
    inside the weblogic server console I have created a data source and test is "success" MySql
    Now inside the deployments > DBAdapter > Configuration > outbound connection pools
    I am new outbound connection, however I only get one option by default "javax.resource.cci.ConnectionFactory".
    which is default pointing to oracle DB.
    If someone has implemented this earlier or some blog/document demonstrates this please let me know.
    Thanks
    Yatan

    Thanks Naresh,
    actually I tried changing the "platformClassName" to "oracle.toplink.platform.database.MySQL4Platform" in the existing connection factory.
    I am able to update the DBAdapter successfully, however when I try to run the service created in JDEV which uses this MySql DB table it gives me below error.
    I also have another doubt regarding "How can we create a new connection factory in weblogic console?"
    ERROR:
    The selected operation process could not be invoked.
    An exception occured while invoking the webservice operation. Please see logs for more details.
    oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: Exception occured when binding was invoked.
    Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'insert' failed due to: Could not create/access the TopLink Session.
    This session is used to connect to the datastore.
    Caused by Exception [EclipseLink-7042] (Eclipse Persistence Services - 2.1.3.v20110304-r9073): org.eclipse.persistence.exceptions.ValidationException
    *Exception Description: Database platform class [org.eclipse.persistence.platform.database.MySQL4Platform] not found.*
    Internal Exception: Exception [EclipseLink-3007] (Eclipse Persistence Services - 2.1.3.v20110304-r9073): org.eclipse.persistence.exceptions.ConversionException
    Exception Description: The object [org.eclipse.persistence.platform.database.MySQL4Platform], of class [class java.lang.String], could not be converted to [class java.lang.Class]. Ensure that the class [org.eclipse.persistence.platform.database.MySQL4Platform] is on the CLASSPATH. You may need to use alternate API passing in the appropriate class loader as required, or setting it on the default ConversionManager
    Internal Exception: oracle.classloader.util.AnnotatedClassNotFoundException:
    Missing class: org.eclipse.persistence.platform.database.MySQL4Platform
    Dependent class: org.eclipse.persistence.internal.helper.ConversionManager
    Loader: sun.misc.Launcher$AppClassLoader@13288040
    Code-Source: /C:/Oracle/MiddlewarePS4/modules/org.eclipse.persistence_1.1.0.0_2-1.jar
    Configuration: /C:/Oracle/MiddlewarePS4/modules/org.eclipse.persistence_1.1.0.0_2-1.jar
    This load was initiated at default.composite.MySqlTest.soa_2c170363-5ad7-4578-8920-f30fb224a8d2:1.0 using the Class.forName() method.
    You may need to configure the connection settings in the deployment descriptor (i.e. DbAdapter.rar#META-INF/weblogic-ra.xml) and restart the server. This exception is considered not retriable, likely due to a modelling mistake.
    The invoked JCA adapter raised a resource exception.
    Please examine the above error message carefully to determine a resolution.

  • MySql merge tables?

    Hello all,
    Anybody have MySql skills? Our reqular guy is out for a couple of weeks so I'm trying to help out. I am mainly a UI guy but I am enjoying CF. Ok to the question. I am trying to update a table with another table. I want to find any duplicate rows based on a particular field, replace them and then add any new rows. Here is what I have (the error that it returns is below):
    <cfquery datasource="square" name="loadupdates">
                SELECT MLS_Id, List_Price, Public_Address, Street_Number, Street_Name, Unit_Number, City, Zip_Code, Subdivision_Name, Bedroom, Baths_Total, Full_Baths, Half_Baths, Square_Feet, Lot_Sqft, Garage_Capacity, Garage_Type, High_School, Junior_School, Property_Description, Listing_Office_Name, Listing_Office_Id, Listing_Agent_Name, Listing_Agent_Phone, Listing_Agent_Id, Short_Sale, Open_House_Flag, List_Date, Last_Image_Update, Price_Change_Date, Image_Count, Latitude, Longitude
                FROM square.glvar_daily
    </cfquery>
    <cfloop query="loadupdates">
            <cfquery name="mergUpdates" datasource="square">
            INSERT INTO square.glvar (MLS_Id, List_Price, Public_Address, Street_Number, Street_Name, Unit_Number, City, Zip_Code, Subdivision_Name, Bedroom, Baths_Total, Full_Baths, Half_Baths, Square_Feet, Lot_Sqft, Garage_Capacity, Garage_Type, High_School, Junior_School, Property_Description, Listing_Office_Name, Listing_Office_Id, Listing_Agent_Name, Listing_Agent_Phone, Listing_Agent_Id, Short_Sale, Open_House_Flag, List_Date, Last_Image_Update, Price_Change_Date, Image_Count, Latitude, Longitude)
            VALUES (#loadupdates.MLS_Id#,#loadupdates.List_Price#,#loadupdates.Public_Address#,#loadupdates. Street_Number#,#loadupdates.Street_Name#,#loadupdates.Unit_Number#,#loadupdates.City#,#loa dupdates.Zip_Code#,#loadupdates.Subdivision_Name#,#loadupdates.Bedroom#,#loadupdates.Baths _Total#,#loadupdates.Full_Baths#,#loadupdates.Half_Baths#,#loadupdates.Square_Feet#,#loadu pdates.Lot_Sqft#, #loadupdates.Garage_Capacity#,#loadupdates.Garage_Type#,#loadupdates.High_School#,#loadup dates.Junior_School#,#loadupdates.Property_Description#,#loadupdates.Listing_Office_Name#, #loadupdates.Listing_Office_Id#, #loadupdates.Listing_Agent_Name#,#loadupdates.Listing_Agent_Phone#,#loadupdates.Listing_A gent_Id#,#loadupdates.Short_Sale#,#loadupdates.Open_House_Flag#,#loadupdates.List_Date#,#l oadupdates.Last_Image_Update#,#loadupdates.Price_Change_Date#,#loadupdates.Image_Count#,#l oadupdates.Latitude#,#loadupdates.Longitude#)
            ON DUPLICATE KEY UPDATE MLS_Id=MLS_Id+#loadupdates.MLS_Id#;
            UPDATE square.glvar SET MLS_Id=MLS_Id+#loadupdates.MLS_Id#
            WHERE
             (MLS_Id = #loadupdates.MLS_Id#,List_Price = #loadupdates.List_Price#,Public_Address = #loadupdates.Public_Address#,Street_Number = #loadupdates.Street_Number#,Street_Name = #loadupdates.Street_Name#,Unit_Number = #loadupdates.Unit_Number#,City = #loadupdates.City#,Zip_Code = #loadupdates.Zip_Code#,Subdivision_Name = #loadupdates.Subdivision_Name#,Bedroom = #loadupdates.Bedroom#,Baths_Total = #loadupdates.Baths_Total#,Full_Baths = #loadupdates.Full_Baths#,Half_Baths = #loadupdates.Half_Baths#,Square_Feet = #loadupdates.Square_Feet#,Lot_Sqft = #loadupdates.Lot_Sqft#,Garage_Capacity = #loadupdates.Garage_Capacity#,Garage_Type = #loadupdates.Garage_Type#,High_School = #loadupdates.High_School#,Junior_School = #loadupdates.Junior_School#,Property_Description = #loadupdates.Property_Description#,Listing_Office_Name = #loadupdates.Listing_Office_Name#,Listing_Office_Id = #loadupdates.Listing_Office_Id#,Listing_Agent_Name = #loadupdates.Listing_Agent_Name#,Listing_Agent_Phone = #loadupdates.Listing_Agent_Phone#,Listing_Agent_Id = #loadupdates.Listing_Agent_Id#,Short_Sale = #loadupdates.Short_Sale#,Open_House_Flag = #loadupdates.Open_House_Flag#,List_Date = #loadupdates.List_Date#,Last_Image_Update = #loadupdates.Last_Image_Update#,Price_Change_Date = #loadupdates.Price_Change_Date#,Image_Count = #loadupdates.Image_Count#,Latitude = #loadupdates.Latitude#,Longitude = #loadupdates.Longitude#;)
            </cfquery>
    </cfloop>
    Here is the error:
    Error Executing Database Query.
    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ALORA ST,Street_Number = 11188,Street_Name = ALORA ST,Unit_Number = ,City = Las ' at line 3
    The error occurred in C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/squaretortilla/Feeds/GLVAR/parseCSV.cfm: line 78
    76 : WHERE 77 : 78 :  MLS_Id = #loadupdates.MLS_Id#,List_Price = #loadupdates.List_Price#,Public_Address = #loadupdates.Public_Address#,Street_Number = #loadupdates.Street_Number#,Street_Name = #loadupdates.Street_Name#,Unit_Number = #loadupdates.Unit_Number#,City = #loadupdates.City#,Zip_Code = #loadupdates.Zip_Code#,Subdivision_Name = #loadupdates.Subdivision_Name#,Bedroom = #loadupdates.Bedroom#,Baths_Total = #loadupdates.Baths_Total#,Full_Baths = #loadupdates.Full_Baths#,Half_Baths = #loadupdates.Half_Baths#,Square_Feet = #loadupdates.Square_Feet#,Lot_Sqft = #loadupdates.Lot_Sqft#,Garage_Capacity = #loadupdates.Garage_Capacity#,Garage_Type = #loadupdates.Garage_Type#,High_School = #loadupdates.High_School#,Junior_School = #loadupdates.Junior_School#,Property_Description = #loadupdates.Property_Description#,Listing_Office_Name = #loadupdates.Listing_Office_Name#,Listing_Office_Id = #loadupdates.Listing_Office_Id#,Listing_Agent_Name = #loadupdates.Listing_Agent_Name#,Listing_Agent_Phone = #loadupdates.Listing_Agent_Phone#,Listing_Agent_Id = #loadupdates.Listing_Agent_Id#,Short_Sale = #loadupdates.Short_Sale#,Open_House_Flag = #loadupdates.Open_House_Flag#,List_Date = #loadupdates.List_Date#,Last_Image_Update = #loadupdates.Last_Image_Update#,Price_Change_Date = #loadupdates.Price_Change_Date#,Image_Count = #loadupdates.Image_Count#,Latitude = #loadupdates.Latitude#,Longitude = #loadupdates.Longitude#; 79 : 80 :

    Can you reproduce it using 2 sessions in a native mysql client?No, only Oracle SQL Developer is behaving like this.
    Here are the steps I perform:
    #1.) Launch Mysql client
    mysql> create schema MySchema;
    Query OK, 1 row affected (0.00 sec)
    mysql> create table MySchema.MyTable (col1 int) engine=InnoDB;
    Query OK, 0 rows affected (0.04 sec)
    #2.) Launch Oracle SQL Developer, connect as root to localhost.
    Username: root
    Hostname: localhost
    Enter SQL Statement:
    select count(*) from MySchema.MyTable;
    [F9 to Execute Statement]
    Results:
    0
    #3.) Alt-Tab back the MySQL client:
    mysql> insert into MySchema.MyTable values (1);
    Query OK, 1 row affected (0.01 sec)
    mysql> commit;
    Query OK, 0 rows affected (0.00 sec)
    mysql> select count(*) from MySchema.MyTable;
    | count(*) |
    | 1 |
    1 row in set (0.00 sec)
    mysql> exit;
    Bye
    #4.) Alt-Tab back to Oracle SQL Developer
    Enter SQL Statement:
    select count(*) from MySchema.MyTable;
    [F9 to Execute Statement]
    Results:
    0
    Enter SQL Statement:
    commit;
    [F9 to Execute Statement]
    Enter SQL Statement:
    select count(*) from MySchema.MyTable;
    [F9 to Execute Statement]
    Results:
    1

  • DB Tool List Table: How to access tables which are in different SQL database ?

    Hi, All,
    I'm working on a database application (SQL server) and is evaluating the NI DB Tool kit for this project.
    One of the requirement is that I need to access tables which are in two different database
    (say Table A in DB 1 and Table B in DB 2).
    Our IT guys has linked Table A in DB1 to DB 2 and I verfied this when I use the SQL server managment studio.
    When DB 2 tables are populated, Table A from DB1 is also there. I can also do the same thing using MS Access.
    Table A in DB1 is avalaible to me enven though I only connect to DB 2.
    Here comes the problem.
    When I use DB Tool List Table.vi to access DB2, it does NOT list Table A in DB1. It only list the tables in
    the database (DB2) which I make connection to (using DB Tool Open Connection.vi with a file DSN)
    So my work around right now is to open two seperate connection to DB1 and DB2. However, this approach
    obviously creates a problem when I have to access seperate database constantly in my application.
    What would be a solution to this ? I've search the forum but only see one post that's somewhat related to
    my question. (And it was posted on 2004) Perhaps I need to alter the code in the orignial VI (DB Tool List Table.vi)??
    My IT guy told me he has not encountered this scenario since he writes codes in other enviroment such as
    VB and others, and he's always been successful by linking tables to different database. 
    I hope my question is sound and clear since I really don't know much about database terminology.
    Any comment/suggestion is much appreciated !!!
    Thanks
    Chad
    Solved!
    Go to Solution.

    To josborne:
    To answer your question:
    - Are the two databases contained on the same SQL Server instance? 
    Or are the databases on separate instances?  I assume they are on
    separate servers, otherwise this wouldn't really be an issue.  But its
    good to know because it will affect how you build your SQL statements.
    Yes they are on separate instances. 
    - Ask your IT people specifically how they "linked Table A in DB1 to
    DB 2".  I assume they used "linked servers". 
    Maybe I used the wrong terminology "linked." They created a "View of Table A (DB1)" in DB2 using the management studio.
    Here is a screen shot of that. As you can see, dbo.VISUAL_WORK_ORDER is seen under LABVIEW database in the management studio.
    I also see the same table when I make connection to database using MS Access.
    Could you elaborate on "configure your SQL statement correctly" =) ? The purpose of using LabView's took kit is so that I can do
    minimum SQL statements. Are you talking about modifying LabView's native VI (DB Tool List Table.vi) ?
    Thanks for the information. SQL is just something new to me.

  • Accessing MySQL InnoDB tables via JDBC using Oracle SQL Developer

    I had posted a problem in the Oracle SQL Developer forum with how that application (v1.1) accesses MySQL InnoDB tables and someone replied that the "[data migration] team created the integration with MySQL", so I am posting here in hopes of learning more about the problem.
    Here's a summary:
    When I use Oracle SQL Developer to query MySQL InnoDB tables, I need to issue a "commit" before I do each query to ensure that I am getting current results. Otherwise, it appears to be using a snapshot as-of the last commit. Is this a problem with SQL Developer, or a JDBC configuration, or MySQL problem even?
    The full details are here:
    Re: MySQL InnoDB tables

    Hi,
    I've posted a response to your original thread.
    Regards,
    Dermot.

  • Get data source schema - List tables has failed

    Hi, I am trying to expose tables from a SQL Azure Database to OData feed on power bi's data source setting and I got the following alert:
    Get data source schema - List tables and views has failed.  Please check Windows Event Log for Gateway Instance (InstanceName1) errors.
    Thanks in advance.

    Hi,
    Thank you for your question.
    I am trying to involve someone familiar with this topic to further look at this issue.
    In the meantime please have a check on the below link and check if it helps.
    http://whitepages.unlimitedviz.com/2013/09/power-bi-working-with-the-data-management-gateway/
    https://support.office.com/en-us/article/Create-a-Data-Source-and-Enable-OData-Feed-in-Power-BI-Admin-Center-9dbd3091-8961-4564-adf6-2a3aeff0b2b4?ui=en-US&rs=en-US&ad=US
    Regards,
    Mekh.

  • Plotting graph in LabVIEW from MySQL data table

    Is there any possibility to plot the data from MySQL data table in LabVIEW graph/chart??
    can somebody help me??
    thanks...

    I am new with LabVIEW and I am also with the same problem.
    No problems to write data into MySQL, but when trying to read data neither "fetch element data" or "get properties" answer !
    It is not possible to get a simple recordcount using the "get properties".  The same script give the right answers with MS Access, only changing the DB reference from "connection string" to a "UDL".  Does somebody can post an example retriving data (that runs ok even with a WHERE clause in the recordset) using MySQL ?
    The connection string I am using is:
    Driver={MySQL ODBC 5.1 Driver};Server=127.0.0.1;Database=DBname;User=root​;Password=xxx;Option=785;
    Attachments:
    MySQL_Access_diff.JPG ‏88 KB

  • How to realize about List Table

    Hello,
              How can I realize about list table, how can I add the image logo in it ? for the details that you can follow my enclosed, I have marked with red circle drawing ,from NI example finder, that we can see, there are an image logo side by every title at the list table, how NI append it ?
    who knows ? thanks in advance.
    Attachments:
    how to realize.JPG ‏24 KB

    Hi Gilbert
    It is possible to add a cutom image to a tree control, please look at the following KB
    How Do I Load and Use Custom Symbols for My Tree Control Items?
    This should take you through the steps you need to set this up correctly.
    Regards
    JamesC
    NIUK and Ireland

  • DB Toolbox List tables - does not work properly

    Hello All
    I have two databases: one "c:\a\aa.mdb" contains some tables inside
    second "c:\a\bb.mdb" contains no table.
    When I run the list tables command from DB toolbox SEPARATELLY the tables are listed in proper way, i.e. one has tables, second does not.
    But when I build a vi which returns the table list, and call it twice the result is wrong. Both database seems to have all tables, even though the second does not contain any tables.
    I attachment you will find the packed example.
    Two databases with udl files (change if unpacked to different directory than c:\a\).
    The vi "two vi tables.vi" shows the problem. It calls "find tables.vi" to return the tables in database.
    You can see th
    at when DB List tables is called in the main vi it works fine. But when it is called two times inside the loop it returns false results.
    Can anybody comment on this.
    For those who are afraid of unpacking zip files I enclose pictures.
    thank you in advance
    Pawel
    Attachments:
    list_tables.zip ‏36 KB
    diagram.gif ‏22 KB
    front_pannel.gif ‏37 KB

    Pawel,
    I apologize for the delayed response to your first question. I am currently working on the problem in order to determine a more permanent solution. These forums are a very important resource for not only helping our customers but also for improving our products!
    With regards to your other question I believe the problem is one of data flow programming. Each table creation will take a certain amount of time to complete depending on the size and nature of the rows and columns being inserted. Unless you programmatically control the data flow, the �DB Tools Execute Query.vi� does not necessarily know when each table has been created. Since control is handed off to the database program, the �DB Tools Create Table vi� is forced to wait
    until the database program returns control.
    To programmatically control the flow of data you would need to use either a case structure with a while loop (suggested) or a sequence structure. These structures are critical in cases where execution of a previous section of code must be completed before subsequent code portions are to execute. I have attached an exaple that may prove useful.
    The wait method is actually a good way to time data flow but in this case may not be the best solution if you want your table creations to be dynamic over time (you may be forced to change the wait for larger table creations, for instance). If you know that your table creations will never change then using a wait method may be an acceptable solution.
    I hope this information helps out some. If not please post back with some sample code or more detail on your issue. Good Luck!
    Craig H.
    National Instruments
    Attachments:
    Create_Table_Example.zip ‏26 KB

  • Create tree list table for my pages

    Please, How do i populate a tree list table for my application pages for navigation if i have report1 on page number 1 and form 1 on page number 2 and how do i choose my root.

    Hi,
    Try giving the time constraint as T and the custom table in the Time cnstr. Tab. field.
    Check Infotype 0006 for reference, which has the subtype selection.
    Regards,
    Balaji. D

  • How to delete the data loaded into MySQL target table using Scripts

    Hi Experts
    I created a Job with a validation transformation. If the Validation was failed the data passed the validation will be loaded into Pass table and the data failed will be loaded into failed table.
    My requirement was if the data was loaded into Failed database table then i have to delete the data loaded into the Passed table using Script.
    But in the script i have written the code as
    sql('database','delete from <tablename>');
    but as it is an SQL Query execution it is rising exception for the query.
    How can i delete the data loaded into MySQL Target table using scripts.
    Please guide me for this error
    Thanks in Advance
    PrasannaKumar

    Hi Dirk Venken
    I got the Solution, the mistake i did was the query is not correct regarding MySQL.
    sql('MySQL', 'truncate world.customer_salesfact_details')
    error query
    sql('MySQL', 'delete table world.customer_salesfact_details')
    Thanks for your concern
    PrasannaKumar

  • Unable to get Database Connectivity vi to List Tables of a Filemaker Pro database

    Hello Forum,
    I've been successful using my ODBC Admin to create a System DSN for a simple Filemaker Pro db on my PC running Windows XP (I wish I could delete my previous post asking for help doing that!).  Now, my LV program successfully "connects" to the db using the "DB Tools Open Connection vi".  However, I cannot get the "DB Tools List Tables" vi to give me a list of the database's tables.  LV just returns an empty string array.  However, I can accomplish other tasks such as listing the columns of a table using the "DB Tools List Columns" vi.
     Any thoughts on why I cannot list the db's tables??

    Hi NI,
    I am still getting a empty string array result when I use "DB Tools List Tables" vi.  I am running Filemaker Pro 10.0v1 and LabVIEW 8.2.  I can get other DB VIs to work just fine, namely: "DB Tools List Columns", "DB Tools Insert Data", "DB Tools Execute Query" and "DB Tools Fetch Recordset Data".  I can obviously work around not having the "List Tables" code, but it makes me wonder where I'm going wrong.
    Andy 

Maybe you are looking for

  • Data Commit throwing an error.

    This is the way I commit data:             protected function btnCommit_clickHandler(event:MouseEvent):void                 baa_data_svc.updt_SBJ(bAA_SBJ);                 data_chngd = false; When I try to re-open the form after a commit (shown above

  • How to read cookie from JSTL

    In the welcome page I have take user timezone and place it in the cookie (with JavaScript). document.cookie = 'timezone=' + timeZoneString; On some other page(s) I need value of timeZoneString, and I tray something like that    <tr>       <td><om:mes

  • Compiler Error Message: CS0433

    Compiler Error Message: CS0433: The type 'CrystalDecisions.Web.CrystalReportPartsViewer' exists in both 'c:\WINDOWS\assembly\GAC_MSIL\CrystalDecisions.Web\11.5.3700.0__692fbea5521e1304\CrystalDecisions.Web.dll' and 'c:\WINDOWS\assembly\GAC_MSIL\Cryst

  • INCLUDE  in header text not processed in Smartform

    Hello all, In transaction ME22N the user is adding header text in this manner: They go into the SAPscript editor, go to insert and select standard text, select from the list of standard text, and it adds /: INCLUDE Z_SPA_SINST OBJECT TEXT ID ST in th

  • URL display incomplete now?

    When I go to pages in Safari on my iPhone 5 under iOS 7, Safari now shows only the domain name at the top in the URL field, not the full path... This can be very misleading... What's up?