I have an interesting problem. By some special reasons Im writing a new module and wanna connect to a none PN database to get some values and then connect to the PN DB and do some stuff there.
I do it something like this.
$dbcon = mysql_connect("localhost",$dbuser,$dbpsw);
mysql_select_db($non_pn_db) or die( "Unable to select database");
$SQL = "some SQL i use"
$res = mysql_query($SQL);
mysql_close($dbcon);
I then do a reqular
$dbconn =& pnDBGetConn(true);
$pntable =& pnDBGetTables();
$SQL = "insert into $table bla bla bla..";
$dbconn->Execute($SQL);
the problem is that the second SQL tries to do the insert on the $non_pn_db database!? Is there a better way to connect to a second database then the first bruteforce way I uses?
// Samuel
Watch
GitHub Core
Show your support for Zikula! Sign up at Github account and watch the Core project!
GitHub Modules
- internetking created topic »password problem« 25. May
- mesteele101 responded to »ERR (3): E_USER_ERROR: Smarty error: [in pagesvar:pagesitem2en line XXX]…« 25. May
- mazdev responded to »Pages 2.5.0 and updating - Page not found« 25. May
- ehdwma created topic »Hide "Register new account" and change template to 3 col« 25. May
- mesteele101 responded to »Zikula 1.3.3 - Selecting a category in Pages not working« 25. May
- mdee created topic »How to implement returnpage ?« 25. May
- nestormateo responded to »Fillters in Clip« 24. May
Zikula Blog
- Anatomy of Open Source Projects on Mar 07
- Continuous Review on Mar 01
- Not Invented Here on Feb 24
- How to Contribute Your Code at Github on Jan 13
- 10 Steps to Coding-Nirvana: Tips for Successful Module Writing on Nov 12
- Submitting Bug Report Tickets That Get Results on Aug 17
- Cozi Tricks #1: Syntax Highlighting on Aug 07
Login
connect to other mysql database
-
- Rank: Helper
- Registered: Jan 29, 2004
- Last visit: Oct 21, 2009
- Posts: 852
Take a look at this thread that deals with a similar problem. Make you sure you read it all. The solution is all the way at the bottom
HTH -
- Rank: Legend
- Registered: Dec 11, 2002
- Last visit: Oct 21, 2009
- Posts: 11674
By the way, there will be an API in PostNuke .8 to establish a new database connection object to avoid this type of problem.
--
itbegins.co.uk - Zikula Consulting
birtwistle.me.uk - Personal Blog
Please read the Support Guide -
- Rank: Team Member
- Registered: Jul 21, 2007
- Last visit: May 24, 2010
- Posts: 67
hi hammerhead,
this is exactly what im searching for now, 1.5 years later.
can you give me some more information about that, pls?
many thanks in advance :)
philipp(2)
- Moderated by:
- Support
