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 strongm 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. kiwuji

    JDBC connection

    It connected, i found out that the error is on the insert statement not the driver. Thanks, Kiwuji
  2. kiwuji

    JDBC connection

    yes, I think something is wrong with the connection string. Here my configuration function public void configJDBC() { try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); //Driver String URL = "jdbc:odbc:;DRIVER=Microsoft Access Driver...
  3. kiwuji

    JDBC connection

    I am tryin to to setup an application to connect to MS Access without having to setup DSN from control panel every time that take the application to another machine. this is the Driver code but it's not working ... Any Suggestion!!! Thanks, Kiwuji...
  4. kiwuji

    Dropping socket connection

    I am developing an application that transfer files amoung peers, client/server , using socket. The requerement for the project is to send request to other peer using xml file. Several things are happening that's driving me crazy. Here are the scenerios: 1. When I connect to my own peer (setup...
  5. kiwuji

    ODBC Connection failure

    johndweidauer : SourceTable = "DMKIIS_TIIS_MOVEDETL" is an ODBC Link table statically created in Access using Link manager tool. Does make a difference using DAO verus ADO? (performance?) Thanks, Kurz
  6. kiwuji

    ODBC Connection failure

    I've working getting data from DB2 using VB codes. The code that I wrote works for a while (about 3 - 4 minute), then i get a message that say "ODBC call failed" If anybody knows how to fix my code to prevent ODBC failure, please HELPPPPP!!!!!! code: Public Function TransferMonth()...
  7. kiwuji

    Copy tables between databases HELP Please

    Thank you so much jrbarnett...it works [2thumbsup] kiwuji [afro]
  8. kiwuji

    Copy tables between databases HELP Please

    Hi everyone, I've been stuck with this problem all day, may be someone can help Scenerio: 1. I have three database A, B, C -- A is on my hard-drive -- B is the production database -- C is the backup of the production database 2. database A feeds database B by importing...
  9. kiwuji

    Automate Compact and Repair Utility

    Thank you both Creepers and cotton, both method work very good. the only thing i have to upgrade 150 databases :( but it's for a good cause. Thank you again kiwuji
  10. kiwuji

    Automate Compact and Repair Utility

    Does anyone know how to automate Compact and Repair utility add-ins? Is there a way to write codes that would automatically execute the compact & repair utility? Please Help...Thank you kiwuji
  11. kiwuji

    pad single digit number with leading zero

    Thank you so much drtree, it's working nice kiwuji
  12. kiwuji

    pad single digit number with leading zero

    I have a query that retrieve month from database but i want the single digit number to be pad with a leading zero. this the query select Month(date()) as [MONTH] from TABLENAME currently returns 1 to 9 i want it to return 01 to 09 Thanks, kiwuji
  13. kiwuji

    help with resources error

    this is the error message Unsuccessful execution because DB2 resource limit was exceeded. Resource name = ASUTIME, limit = 000000000030. THX, kiwuji
  14. kiwuji

    help with resources error

    I m tryin to execute the following query but i get an exceed resource error. is there any way i chance the resource limit, or may change my query around.... This is the query: SELECT YEAR(ACCRUAL_DATE), MONTH(ACCRUAL_DATE), SC, OJ, ONR, OC, ONRMP_ST, OFC, OFST, FFRT, OFFRD, CSNE_CITY, TCND...
  15. kiwuji

    Date query Help

    Dear Friends, Thank you very much for your replies...everything is working great kiwuji
  16. kiwuji

    Date query Help

    I m trying to retreive data from a table and the date field in the table are defined as charter. so i figure if i can extract just the month and year portion of current_date and converted to character, everything should work...but i m getting errors after error. this is the query: SELECT...

Part and Inventory Search

Back
Top