Is there any MS Sql Server connector available for Flex Air.?

hi,
   I want to connect my flex Air application with MS Sql server.* directly without any server side scripting. I got MySql Connector , which is available in  (http://code.google.com/p/assql/downloads/list). Like this is there any connector is available .Please share it
thanks
karthy

I do have exactly the same questions. SO far the fas_mssql_connector.asp file is placed at the 'wwwroot' folder of the 'inetpub' folder of the IIS server. As hostname I use '[MyServer]' since it should run on the same machine and username and password are correct.
The fas_MSsql_Clean file is setup in a way that the name of the database is specified and the url to the asp file is set as: http://[MyServer]/fas_mssql_connector.asp
My SQL query looks like this:
private function getDbData():void
    mssqlQuery("Select * from Tomat", "getDataO3");
And the MXML document like this:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="955" minHeight="600">
    <mx:Script source="Actionscript/MSsql.as"/>
    <mx:Script source="Actionscript/SqlQueries.as"/>
    <mx:DataGrid x="148" y="95" id="dgData">
        <mx:columns>
            <mx:DataGridColumn headerText="Column 1" dataField="col1"/>
            <mx:DataGridColumn headerText="Column 2" dataField="col2"/>
            <mx:DataGridColumn headerText="Column 3" dataField="col3"/>
        </mx:columns>
    </mx:DataGrid>
    <mx:Button x="148" y="264" label="Get data" id="btnGet" click="getDbData()"/>
</mx:Application>
However the application is busy for a long time and I do not receive a single piece of data. Any help with this?
Thanks in advance.

Similar Messages

  • Is there any type of HiFi Station available for the 2nd Gen. iPod shuffle?

    I was wondering if there is any type of HiFi Station available for the 2nd Gen. iPod shuffle.
    With HiFi Station I mean those docking stations which directly play the music from your iPod, so that you don´t need to connect to your Computer f.e.
    Does anybody know if something like this exist, or if it is only available for ALL other iPod models???
    Thanks already!
    Stefan

    YOu can use one of these with any other iPod "HiFi Station": http://www.griffintechnology.com/products/dockshuffle/
    Use your 2nd generation iPod shuffle in full-size Universal Dock devices.
    Your iPod shuffle is an incredible entertainment value in an incredibly small package. It delivers the music just like its full-size iPod cousins. But one thing it doesn't do is fit in the dock well in your made-for-iPod speaker system.
    That's why we made a Dock Adapter especially for 2nd generation iPod shuffle. The Dock Adapter is shaped just like the dock connector on the bottom of every full-size iPod. Plug it into your iPod shuffle's headphone jack, and suddenly the little guy fits in your iPod speakers just like the big guys.
    Take Griffin Dock Adapter with you, and you can play your iPod shuffle wherever there's a set of Universal Dock speakers.

  • Is there any third party control panel available for FMS?

    Hi...
    I am planning to setup my FMS.
    Can any one please tell me if there is any third party controlpanel available in the market for FMS (Just like centovacast/whmsonic for shoutcast.) to manage the customers?
    I will be veery thankful if somebody tell me this.
    Regards,
    Kamal

    If you haven't already, try looking through the Apple Downloads specifically for iTunes.
    http://www.apple.com/downloads/macosx/ipod_itunes/
    There might be something there that is at least similar to the app your looking for.
    edit: There is one shareware that is an iTunes plugin called Multi-tunes. With it you can create multiple iTunes libraries, one library called "Main" one called "Bootlegs" etc, and Multi-Tunes will allow you to quickly switch between them from within the iTunes window. Not exactly what your looking for but close.
    http://www.apple.com/downloads/macosx/ipoditunes/multitunesdavidcaldwell.html
    Message was edited by: Zookalicious

  • Are there any professional tax preparation programs available for Mac?

    After seeing how much I love my Intel iMac, my dad really wants one. He does book keeping and tax preparation for his clients from home, so he would need some type of tax software that would work with a mac.
    Keep in mind, he would need professional level software, like Taxwise. Home tax programs like Turbo Tax or Quicken wouldn't work. He needs software for e-filing, form generation, refund loans, etc.
    Do you guys know of any?

    Take a look at this link, http://www.logitech.com/en-us/product/wireless-wave-combo-mk550?crid=27&affid=31 60356
    This link, http://www.amazon.com/Kinesis-KB500USB-BLK-Advantage-Contoured-Keyboard/dp/B000L VJ9W8/ref=sr_1_2?ie=UTF8&qid=1357225947&sr=8-2&keywords=kinesis+advantage+pro

  • Is there any 'configuration based' tool/api available for content purging in CQ 5.5?

    Hi All,
    I am looking for some api/tool which could be utilized for the content purging in CQ 5.5. It should be a configuration based api which would take content path hierarchy as an input to do the purging.
    Any help/ideas are appreciated.
    Thanks.

    For what it's worth, I had no problems migrating an authentication plugin from 4 to 5. This is really good, because otherwise I wouldn't be able to use 5.1.

  • Are there any free video editting Applications available for Mac osx 10.7.5???

    I'm trying to edit a number of video's regarding a presentation I'm working on for school project. Can anyone recommend a reliable video editting application? Thanks for helping

    What about iMovie? I comes standard on Macs.
    x

  • Is there any well designed sample database availabe for download ?

    Hi
    Thank you for reading my post
    I get the Oracle Express 10g and now i am looking for a good database with some test data inside it
    to practice some tuning and sql commands.
    is there any (rather big ) sample database available for download ?
    Thanks

    Hello,
    XE ships with the Sample Application that includes the HR schema with some objects to work on. By default, the HR user account is locked so you need to unlock it first. It's usually a good place to start as many current and future documentation based on XE will include examples from this schema.
    Przemek

  • Sql Server High availability failover trigger

    Hello,
    We are implementing sql server 2012 availability groups (AG). Our secondary databases are not accessible in order to save licenses.
    We have a lot of issues concerning monitoring, backup and SSIS. They all come down to the fact that they want basic information from the secondary, that is not accessible. We are implementing SSIS, which is supported on AG, but the SSISDB is encrypted.
    Backup problem
    The secondary instance does not know anything about the backups made in the primary instance. After a failover differential backups fail.
    SSIS problem:
    There is a blog (http://blogs.msdn.com/b/mattm/archive/2012/09/19/ssis-with-alwayson.aspx) that suggest to make a job that checks whether the status has changed from secondary to primary. If so, you can decrypt and encrypt again.
    This job has to be executed every minute. Which is way too much effort for an event that happens once in a while.  There are a few other problems with this solution. The phrase "use ssisdb" has to be included in the a job step. And the
    jobstep fails. The secondary is not accessible.
    Monitoring problems:
    We use Microsoft tooling for monitoring: SCOM. Scom does not recognize a non readable secondary and tries to login continuously.
    There are a few solutions that I can think of:
    -  sql server build in failover trigger
    -  Special status of secondary database.
    Failover trigger:
    We would like a build-in failover trigger, in stead of a time based job, that starts a few standard maintenance actions if only at the time (or directly after) a failover has occurred. Because now our HA cluster is not really high available until :
    - SSISDB works and is accessible after failover
    - Backup information is synchronised
    - SCOM monitoring skips the secondary database (scom produces loads of login failures)
    Does anyone have any suggestion how to fix this?

    No built in trigger can achieve your requirement.

  • Any extra settings I need to make for Sql Server 2012 Install for the purpose of SP 2013

    Hi,
     I am going to install sql serevr 2012 Ent on a stand alone server Win 2012 box[ say Server2] and I want to make this machine as a db box and will make other box[say Server1] SharePoint box.
    [ On Server1 where there is no sql server installed ].
    Do I need to make any extra settings /any mappings/config entries in this box before I install sql on this  Server2 box.
    I mean, in terms of creation of a separate sql instance is required etc ....
    In my prev.installations as a standalone SP install with sql installed on the same box.
    I am facing issue with development with SP 2013. Because though I am having 16GB RAM in one of my dev machines,  with the s/ws like VS 2012, SP D 2013 along with SP 2013 & SQL SEREVR 2012, the debugging is almost NOT
    happening[ its taking "minutes" to hit a breakpoint] at all. 
    help is  appreciated!
    Das

    HI Shankar,Just to be sure with the following settings to configure sharepoint.
    Ensure both boxes in same domain and network
    ensure the connection \telnet is working.
    to instal sharepoint,farm account should have below rights on sql DB.
    db creator,securityadmin
    Check the below link for instaltion of sharepoint 2013.
    http://expertsharepoint.blogspot.de/2013/11/detailed-sharepoint2013-installation-i.html
    Anil Avula[Microsoft Partner,MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • SQL 2012 SP2 There are no SQL Server instances or shared features that can be updated on this computer

    Hi, 
    I have a SQL Server instance:
    Microsoft SQL Server 2012 - 11.0.5058.0 (X64) 
    May 14 2014 18:34:29 
    Copyright (c) Microsoft Corporation
    Standard Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)
    I am trying to install:
    SQLServer2012SP2-KB2958429-x64-ENU
    On the "Select Features" screen of the setup I get an error message when I try to click next:
    "There are no SQL Server Instances or shared features that can be updated on this computer."
    I've checked and re-checked the release notes - pretty sure I have the right versions of everything:
    https://msdn.microsoft.com/en-us/library/67cb8b3e-3d82-47f4-840d-0f12a3bff565?f=255&MSPPError=-2147217396
    Any help appreciated!
    Cheers
    Lucas
    LucasF

    Hi, 
    I have a SQL Server instance:
    Microsoft SQL Server 2012 - 11.0.5058.0 (X64) 
    May 14 2014 18:34:29 
    Copyright (c) Microsoft Corporation
    Standard Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)
    I am trying to i
    LucasF
    Your SQL Server 2012 is already at SP2 see version number 11.0.5058 this corresponds to SP2. So when you run the setup it says there is nothing to upgrade
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Is there any PL/SQL interface in Forms10g Debug mode?

    Dear gurus...
    Since I've been debuuging Forms-10g, I've been looking for a SQL-PL/SQL interface like it was there in Forms-6i. It was very useful to have a look into database while debugging a form and test yours queries at runtime. So do u know that Is there any PL/SQL interface in Forms10g Debug mode?

    Hello Suresh,
    I think you could try to use new Oracle tool - Oracle SQL Developer v 1. It has PL/SQL reporting possibility, such as - Program Unit Components, Unit Line Counts, Search Source Code.
    It is quite easy to develop and debug PL/SQL in JDeveloper environment, just review this tutorial: http://www.oracle.com/technology/obe/obe9051jdev/ide1012/plsqlobe/obeplsql.htm
    If you need in depth analysis, you could use Oracle Enterprise Manager (installed with database) tuning services available through - Advisor Central. This is a user-friendly front-end for database dynamic views.
    Regards,
    Andrejus

  • Is there any table or report that available in SAP for any PR/STR

    HI All,
    Is there any table or report that available in SAP for any PR/STR that are remain opened after S/O canceled.
    Please advice at the earliest.
    Thanks
    Chandru

    Chandru,
    Of course.  The standard MD06 transaction will display ALL MRP generated exception messages, and will take you to the individual material to allow you to determine how you wish to respond to it.
    So, MD06>enter the plant.  Optionally, enter the controller if you wish to limit the results by planner.
    If you are interested in Sales order cancellations, then these exceptions would be categorized by SAP as belonging to the  "exceptions during Scheduling" or "exceptions during availability" groups.  On the Exceptions group tab, select these two items (6&7), deselect the rest. Enter.
    You are now presented with a list of all materials that contain one or more of these exceptions.  From the menu bar at the top, select Edit>Find.  If you get a 'statistics' popup, click through.  Select the 'Find Exceptions' tab.
    Message 26 "excess stock in individual segment" means that in a MTO environment, you have more supply than demand against given order/items (as you would have if a cust. cancelled his MTO order).  Select this message.
    Message 20 "Cancel Process" means that you have a supply element that has NO requirements (as you would have if a cust. cancelled his MTS order).  Select this messaege.
    Message 15 " Postpone process" means that you have supply elements that are scheduled to be received earlier that necessary (as you might have if a Cust cancelled his MTS order). Optionally select this message.
    Clik the green check.  You will now notice that certain rows on the listing are highlighted.  These are the ones that contain your problem children.  Hit the "glasses selected MRP list" button.
    This takes you to the first MD05 of the highlighted items.  Review the problem.  Decide what to do:  Cancel a supply element?  Push out a supply element? Leave it alone?  Call customer service to discuss which order was cancelled and why?  etc etc etc...
    Once you are done with the first material, clik on the 'next material' icon or hit Ctrl-F2.  Repeat.  Continue till all materials have been evaluated and resolved.
    This works for any other MRP message as well.
    Regards,
    DB49

  • SQL Server Agent available on Azure?

    I would like to delete records from an database table on Azure when the table reaches a certain size.
    I would normally do this by scheduling a stored procedure job using SQL Server Agent.
    Is the SQL Server Agent available on databases held on Azure?
    Should I use an alternative approach?
    Thanks
    Stew

    Hello ,
    Please take look on :
    Scheduling job on SQL Azure
    We can execute sql procedures on Azure based on our need (schedule configuration).
    Create a mobile service.
    Create a scheduler. Mention the database to be used for this.
    Configure the scheduler for the frequency.
    Click on tab Script. The script can be written in java script or .net. The script should have the code to run a proc.
     I used below code to run dbo.ExecuteDataRequest procedure Azure database.
     function Execute_Process_Request() {
          console.log("Executing ExecuteDataRequest...");
          mssql.query('Exec dbo.ExecuteDataRequest',{
             success: function(results){
             console.log("Finished the Process Request job.");
              error: function(err) {
                console.log("error is: " + err);
    Find the new user added which will run the scheduler (Under Login folder of Security of Azure db server). Need to grant execute permission to the new user on the database where we need to execute the job.
    Ahsan Kabir Please remember to click Mark as Answer and Vote as Helpful on posts that help you. This can be beneficial to other community members reading the thread. http://www.aktechforum.blogspot.com/

  • Kerberos Configuration Manager for SQL Server is available

    This thread describes the Microsoft Kerberos Configuration Manager diagnostic tool for SQL Server. This tool is available for download from the Microsoft Download Center: 
    Download the  package now.
    About Kerberos Configuration Manager
    The Kerberos Configuration Manager for SQL Server is a diagnostic tool that helps troubleshoot Kerberos related connectivity issues with SQL Server, SQL Server Reporting Services (SSRS), and SQL Server Analysis Services (SSAS). It can perform the following
    functions:
    Collect information on operating systems and Microsoft SQL Server instances that are installed on a server.
    Report on all Service Principal Name (SPN) and delegation configurations on the server.
    Identify potential problems in SPNs and delegations.
    Fix potential SPN problems.
    More information
    This tools helps troubleshoot the following exceptions:
    401
    Note: This error message is for http errors, SSRS errors, and some other similar errors.
    Login failed for user 'NTAUTHORITY\ANONYMOUS'
    Login failed for user '(null)'
    Login failed for user ''
    Cannot generate SSPI Context
    For more information about Kerberos Configuration Manager, go to the following related blogs:
    Released: Kerberos Configuration Manager for SQL Server
    Kerberos Configuration Manager updated for Reporting Services
    Kerberos Configuration Manager updated for Analysis Services and SQL Server 2014
    Reference from the following KB article: Kerberos Configuration Manager for SQL Server is available
    Elvis Long
    TechNet Community Support

    Thanks for posting, Elvis. Can you post this to the SQL Security forum too?
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • What are the Connectors available for KM file repository?

    Hi All,
    Which are different connectors available for KM?
    Apart from below list
         Windows File Server
         Web Servers (HTTP)
         WebDAV compliant servers (MS Sharepoint, MS Exchange Public Folders, LiveLink)
         mySAP PLM DMS
         SAP Knowledge Warehouse
         Lotus Notes
         3rd Party DMS (Filenet, IXOS)
         EP KM repository
    is any of above connector is not used now a days??
    These are the list given in documentation of EP 6.
    So if in EP 7, if they have included more or removed any then please let me know
    Regards,
    Purav

    Hi
    There is another connector for KM
    DMS CONNECTOR FOR KM
    Thanks

Maybe you are looking for

  • Custom report software installed with last logged on user.

    Can someone please help, I'd like to create a custom report: Specific software installed on a computer which includes last logged on user. I can do this by query but need a custom report for none ConfigMgr users.

  • Adding things 2 tabs?

    i was wondering how u could add something 2 a tab, like a jlabel or something. ive only managed 2 add an extra tab with the jlabel in it but i havent been able 2 edit a tab and add something 2 it. ive looked at the API but i cant find an appropriate

  • Runs slow, spinning wheel of death comes often..

    I have an early MacBook Pro Code Duo laptop. 2 Ghz, 2Gigs of RAM. Since loading Snow Cat it seems to be running slower and selecting just about any application or moving from one open screen to another causes the multi-colored wheel of death to raise

  • CS2 Pathfinder Merge or Outline and Fill

    I've spent about 3 hours searching the knowledge base, this forum, and the help file. Hope this is a simple question for you experts. I have several paths that I would like to merge or outline and fill. I used the direct selection tool to select all

  • Message "PXE-E61: Media test, failure, check cable, PXE-M0F: Exiting PXE ROM"

    Please help! I have a Satellite L300 laptop, bought in October 2008, and never had any problems until this January. In January I took it to Future Shop under warranty and they had to replace hard drive. Everything was fine until the beginning of Apri