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. pgosse

    Problem populating DataGrid with results of DataSet

    Tried both but the result is the same. I don't know that this is the problem, as there is no exception being thrown. The datagrid is displayed, the correct number of rows is printed, hell the colors even alternate! But there's no data in them ... In doing this I'm actually rewriting some...
  2. pgosse

    Problem populating DataGrid with results of DataSet

    Hi, folks. I'm new to C# and the .NET framework, so if I've made a stupid mistake that's causing this problem please forgive and bear with me. I have a simple query that I'm trying to output in a datagrid. The query is executing correctly, the correct number of results is displayed, and the...
  3. pgosse

    NullReferenceException when trying to fill OracleDataAdaptor

    The problem exists between the keyboard and the chair. After a decent night's sleep I looked at this code again. It turns out that when I was building the form I didn't pay close enough attention to which tab of the tool box was active. It was HTML, not Web Forms, so I had inadvertantly...
  4. pgosse

    NullReferenceException when trying to fill OracleDataAdaptor

    Additionally, I've pinpointed the exact lines of code causing the problem. lstGrantingAgency.DataTextField = "ftvlocn_title"; lstGrantingAgency.DataValueField = "ftvlocn_title"; lstGrantingAgency.DataSource = ds.Tables[0].DefaultView; lstGrantingAgency.DataBind(); If I comment out those lines...
  5. pgosse

    NullReferenceException when trying to fill OracleDataAdaptor

    Hi there. The entire class is below. strSQL and strLogin are both set. I tried removing the Dispose() calls but the error still occurs. Thanks very much for looking over the code. I really appreciate it. I've been beating my head against this error for almost a day and half now and am soon...
  6. pgosse

    NullReferenceException when trying to fill OracleDataAdaptor

    Greetings. I'm fairly new to C# and .NET so I'm hoping someone can shed some light on what I'm doing wrong here. I've googled the error message and understand what is causing the problem, I just can't see it in my code. I honestly do not see which object I'm not instantiating that is causing...
  7. pgosse

    100% packet loss for new site

    Hi, folks. I've recently been set up as an admin on an IIS box and I just created a new site. nslookup verifies the site exists, but if I ping the domain or IP address I get 100% packet loss. TCP port is 80, anonymous access to the site is disabled, and ip address and domain restrictions have...
  8. pgosse

    .htaccess not working

    Both directories can be accessed by both urls you mention, it's just that the ~pablo account gets prompted to enter a username/password, while the ~webmstr account does not, even though they have their own .htaccess files in each. I dont' get any errors, it's just that the .htaccess seems to...
  9. pgosse

    .htaccess not working

    I'm not sure I understand what the difference would be? Both seem to me be accounts "local" to the machine, though I never log directly into the physical machine. Can you explain this? Cheers and TIA, Pablo
  10. pgosse

    .htaccess not working

    Hi, folks. I'm running into a very strange problem. I've got the public_html folders of two home directories that I'm using .htaccess to protect. If I access them via any one of our virtual hosts running on this box (www.mydomain.com/~username) they both work fine. However, if I access them...
  11. pgosse

    Creating DB with pass required, but pass not needed to connect

    Hi folks. I'm running to a problem which I can't figure out. I'm creating a database using the following command: createdb -U pablo -W pablotest1 I'm prompted to enter the password to create the DB, and after doing so the db is created successfully. However, when I connect to this database...
  12. pgosse

    Unknown error from Transactions

    Hi folks. I've been getting a bevy of errors from PostgreSQL recently, most of which make no sense. Well, that is to say that while I understand what the errors are telling me, there seems to be no logicaly reason why they are occurring. The error message is ALWAYS the one below, which is...
  13. pgosse

    "Missing chunk number" error messages

    Hi folks. We seem to have a corrupted database, or at least that's what I'm assuming. I noticed some very strange errors on Friday, and noticed some records had been randomly deleted, and then when attempting to dump the database this morning I got the following error...
  14. pgosse

    HTTP status codes returned by PEAR::HTTP_REQUEST

    Hi folks. In switching our site from static html to static html driven by a CMS, I've written a script that trolls our entire site, parses out all links, images, script includes, stylesheets, etc., and uses Pear's HTTP_REQUEST package to make sure the file/document exists. However, for some...
  15. pgosse

    Recommended Hosting Providers

    Hi folks. I need to get hosting for my website on a host that offers PostgreSQL. I know this is generally a little more expensive than hosting for MySQL, so I'm really going to comparison shop. Does anyone have any recommendations on a good PostgreSQL hosting company out there, or any...
  16. pgosse

    Query returns different results from php script and command line

    Hi there. Thanks for the reply. The problem was actually a bug in ADOdb's code. When it output the query when debugging was turned on, it inserted spaces after the commas thus buggering up the query. Cheers, Pablo
  17. pgosse

    Query returns different results from php script and command line

    Hi folks. I'm having a very, very strange problem here. I've got a query which is generated and executed in a php script. It scans a table of "areas" in a cms, a hierarchical folder structure stored in a table, and returns a list of users with access to any content which exists in the tree...
  18. pgosse

    Order of inserts in dump file

    Hi everyone. I've got a quick question regarding the order of insert statements generated by pg_dump. Here's my pg_dump statement: pg_dump -v -D cms -f cms.data.dump For the most part everything works okay, but it seems to be buggering up some of the relationships when it's doing the dump...
  19. pgosse

    POST variables getting mangled

    Hi all. I'm relatively new to administering Apache, and I've come up against a problem which is very strange. I'm running Apache 2.0 on a Dell Precision 340 with RedHat 9.0. I'm developing a CMS, and for some reason post data is at times getting mangled during the post process. The example...
  20. pgosse

    IE 6 mangling POSTed code

    Hi there, Vragabond. Sorry, I should've provided more detail but I've been beating my head against this for about 7 hours straight now. This is all happening within a content manangement system that I'm wriring. Here's the detailed skinny on what's going on: Language used: PHP Form method...

Part and Inventory Search

Back
Top