Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. aalmeida

    Cannot instantiate abstract class system\database\ORM

    ChrisHirst, I'm new at all this so please bare with me, I'm using Zend Studio 11 and line 137 is: echo "Calling static method '$method' ". implode(', ', $args). "\n"; and line 138 is: $static = new Static; Both line are part of the public static function __callStatic($method, $args =...
  2. aalmeida

    Cannot instantiate abstract class system\database\ORM

    Any help is appreciated! AL Almeida CIO http://www.artdigitalonline.com/ May all those that come behind us, find us faithful.
  3. aalmeida

    Logging off problem (Change of PHP Version.)

    Wow! this brings bag bad memories DW2004, I strongly suggest taking the time to bring this code to more recent technology because of security issue and also because that code isn't supported any longer by neither PHP nor Adobe. AL Almeida CIO http://www.artdigitalonline.com/ May all those that...
  4. aalmeida

    Cannot instantiate abstract class system\database\ORM

    All, I appreciate any help I can get, if you have any question let me know. This was supposed to be a very simple PHP MVC for me to learn instead I'm getting more and more confused. The basic idea is: Open the master page that has a form with one text box and a submit button. The value of the...
  5. aalmeida

    Cannot instantiate abstract class system\database\ORM

    I enter anything in the text box and press enter and then I get the following error messages: Calling static method 'where' title, like, %anything% Warning: implode(): Invalid arguments passed in system\database\orm.php on line 137 Calling static method 'table' Fatal error: Cannot instantiate...
  6. aalmeida

    Cannot instantiate abstract class system\database\ORM

    I'm trying to learn MVC and need to query a MySQL database using PDO and ORM but I can't seem to get it right, here is the code: use system\database\ORM as ORM; class Product extends ORM { private $prod_data; private $con; private $data; public function Product(){...
  7. aalmeida

    Need Help getting value in\out of variable

    I'm using VS 2008 SP1 trying to create a SSIS package but hit a wall. String DBName = (Dts.Variables["User::DBNames"].Value).ToString(); This code should return a string with the DB name but instead returns the variable data type System.__ComObject. Any ideas? AL Almeida CIO...
  8. aalmeida

    SSIS Package Freeze with TransactionOption Required

    what is the T-SQL you want to executing inside the container? AL Almeida CIO http://www.artdigitalonline.com/ May all those that come behind us, find us faithful.
  9. aalmeida

    Help needed with Ajax using JQuery to return 2 values to 2 form fields

    Jason Meckley, The problem is not in the JQuery. AL Almeida CIO http://www.artdigitalonline.com/ May all those that come behind us, find us faithful.
  10. aalmeida

    Ajax to fill in two form text fiels

    The issue with this, is the onclick behavior that does not cause the result to be selected and subsequently fill in the "id" and "find" text fields. Bellow the javascript part: // Ajax Functions $('document').ready(function(){ $('#loading').hide(); $('#find').click(function(){...
  11. aalmeida

    Help needed with Ajax using JQuery to return 2 values to 2 form fields

    I'm having an issue with Ajax using a JQuery (to query MSSQL 2K8) to populate 2 text fields as you can see in the code below I have two PHP pages. The main page that have a form with 2 text fields that need to be field with the selected result from the second page Ajax JQuery query. I'm not...
  12. aalmeida

    Help needed with an Ajax using JQuery to return to values to a form

    All, I'm still looking for an answer to my question. Thanks, AL Almeida CIO http://www.artdigitalonline.com/ May all those that come behind us, find us faithful.
  13. aalmeida

    Help needed with an Ajax using JQuery to return to values to a form

    Jpadie, For the id attribute I would like to use pessoas_id from the combination m.pessoas_id, m.nome selected from the result set, which at this time it's limited to 10 rows. I may have forgotten to mention that the database is MS SQL Server 2008 so the query is written using T-SQL. AL...
  14. aalmeida

    Help needed with an Ajax using JQuery to return to values to a form

    It's kind of silent here! anyone? AL Almeida CIO http://www.artdigitalonline.com/ May all those that come behind us, find us faithful.
  15. aalmeida

    Help needed with an Ajax using JQuery to return to values to a form

    All, I'm still looking for an answer to my question. Thanks, AL Almeida CIO http://www.artdigitalonline.com/ May all those that come behind us, find us faithful.
  16. aalmeida

    Help needed with an Ajax using JQuery to return to values to a form

    I'm having an issue with Ajax using a JQuery to populate 2text fields as you can see in the cold below I have two PHP pages. The main page that have a form with 2 text fields that need to be field with the selected result from the second page Ajax JQuery query. I'm not being able to make the...
  17. aalmeida

    Help with: System.Runtime.InteropServices.COMException

    Jason! To manually register the 3rd party Dll I had to do this: Go to the Run item on the Start menu, and type: regsvr32 <path & filename of dll or ocx> I'm using a VS2008 C# Deployment project which detected the 3rd party dll and copied it to the folder, but after the installation completed...
  18. aalmeida

    Help with: System.Runtime.InteropServices.COMException

    Jason, the post you sent seem to indicate that one DLL has not been registered correctly, I had an imported DLL (DSOFile.dll) so I went ahead and manually registered it, it was located in the folder created by the installation process, and the error went away. Thanks for the tips. Now how can I...
  19. aalmeida

    Help with: System.Runtime.InteropServices.COMException

    System.Runtime.InteropServices.COMException (0x80040154): Retrieving the COM class factory for component with CLSID {58968145-CF05-4341-995F-2EE093F6ABA3} failed due to the following error: 80040154. I made a program with Visual C# 2008. There are 2 forms in the program. The program works well...
  20. aalmeida

    Help with: Unable to cast object

    yes! I had searched all over the internet but this post had what I needed. quick and easy thanks. For the benefit of all the others that might get hear looking for a solution I had to modify the display foreeach part of the program as below: foreach (vw_all a in q) {...

Part and Inventory Search

Back
Top