473,387 Members | 1,641 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

query error

hi,

i have the following:

Expand|Select|Wrap|Line Numbers
  1. <form method="post" action="<?php echo $PHP_SELF;?>">
  2. <span style='color: #008b8b; font-size: 10pt; font-family: arial'>
  3. &nbsp &nbsp <b>search </b><input type="number" size="24" class = "INPUTWHITE" maxlength="20" name="SEARCH" value="<?php echo $_POST['search'];?>"
  4. </span>
  5. <input type="submit" value=">" name="submit" class = "btn"></form>
  6.  
  7.  
  8. $SEARCH = $_POST["SEARCH"];
  9.  
  10. $sql="SELECT [account number] AS acct, month, code, age, [time] AS TM FROM table_name WHERE GRP = '".$GRP."' AND acct= '".$SEARCH."' AND day ='".$count."'";
  11.  
I have checked the table to make sure the [account number] is a number type. i am getting an error message like:

"Warning: odbc_exec() [function.odbc-exec]: SQL error: [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1., SQL state 07001 in SQLExecDirect in C:\Program Files\Apache Software ..."

not sure what to do...

thanks in advance,
geebee
Jan 29 '09 #1
5 1108
Markus
6,050 Expert 4TB
Can we see the part that uses odbc_exec() please.
Jan 29 '09 #2
hi,
here is the whole thing...

Expand|Select|Wrap|Line Numbers
  1. <html>
  2.  
  3.  
  4. <STYLE type="text/css">
  5.         TD{font-family:ARIAL;font-size:12px;color:#666666;}
  6.         BODY{font-family:ARIAL;font-size:11px;color:#666666;background-color:#ffffff;margin-top:40px;margin-bottom:0px;margin-left:40px;margin-right:0px;}
  7.         FORM{display:inline;}    
  8.         A:LINK, A:VISITED{color:#6699cc;text-decoration:none;}
  9.         A:HOVER{text-decoration:underline;color:#CCCCCC;}
  10.         .HOMETEXT{font-size:14px;}
  11.         .ITEMNAME{font-size:14px;font-weight:BOLD;}
  12.         /*.WHITELINK{color:#ffffff;font-size:10px;}*/
  13.         .INPUT{border-color:#66CCFF;border-width:1px;border-style:solid;background-color:#eeeeee;font-size:10px;}
  14.         .INPUTWHITE{border-color:#66CCFF;border-width:1px;border-style:solid;background-color:#ffffff;font-size:10px;}
  15.         .INPUT2{background-image:url(webtd_grass_matrix_pic4.jpg);color:#666666;border-top:1px solid #BBBBBB;border-bottom:1px solid #BBBBBB;border-right:1px solid #BBBBBB; border-left:1px solid #BBBBBB; font-family:copperplate gothic light;font-size:7pt;}
  16.         .BUTTON{border-color:#99CCFF;border-width:1px;border-style:solid;}
  17.         .BOLD{color:#666666;font-family:Arial, Tahoma, Helvetica, sans-serif;font-size:8pt;font-weight:BOLD;}
  18.         .BOLDLARGE{color:#666666;font-size:12pt;font-weight:BOLD;}
  19.         .CURRENTPAGE{color:#666666;font-size:8pt;font-weight:BOLD;}
  20.         .ERROR{color:#cc0033;font-size:8pt;font-weight:BOLD;}
  21.         .MENUCELL{height:24px;width:80px;text-align:center;font-weight:BOLD;color:#FFFFFF;border-top:1px solid #BBBBBB;border-bottom:1px solid #BBBBBB;border-right:1px solid #BBBBBB;}
  22.         .MENUCELLSTART{height:24px;width:80px;border:1px solid #BBBBBB;text-align:center;font-weight:BOLD;color:#FFFFFF;}
  23.         .SPACE1{padding-left:20px;}
  24.         .BORDER{background-color:#EEEEEE;color:#666666;border-top:1px solid #BBBBBB;border-left:1px solid #BBBBBB;border-bottom:1px solid #BBBBBB;border-right:1px solid #BBBBBB;height:24px;padding-left:16px;}
  25.         .IVORYBG{background-color:#FFFFF0;color:#EEE8AA;border-top:1px solid #EEE8AA;border-left:1px solid #EEE8AA;border-bottom:1px solid #EEE8AA;border-right:1px solid #EEE8AA;height:24px;padding-left:16px;}
  26.         .BORDER1{border-bottom:1px solid #BBBBBB;}
  27.         .BORDER2{background-color:#EEEEEE;color:#666666;border:1px solid #BBBBBB;}
  28.         .BORDER3{background-color:#000000;color:#666666;border-top:1px solid #ffffff;border-bottom:1px solid #ffffff;border-right:1px solid #ffffff;height:44px;padding-left:16px;}
  29.         .HEADER{background-color:#EEEEEE;color:#666666;border:1px solid #BBBBBB;height:24px;font-weight:BOLD;padding-left:20px;}
  30.         .PRODCELL{border-left:1px solid #BBBBBB;border-bottom:1px solid #BBBBBB;background-color:#FFFFFF;}
  31.         .HEADER1{background-color:#EEEEEE;color:#666666;border-left:1px solid #BBBBBB;border-top:1px solid #BBBBBB;border-bottom:1px solid #BBBBBB;height:24px;font-weight:BOLD;padding-left:20px;}
  32.         .HEADER5{width:130px;color:#666666;background-color:#EEEEEE;border-top:1px solid #BBBBBB;border-right:1px solid #BBBBBB;height:24px;}
  33.         .PRODIMGLGCELL{width:300px;height:295px;background-color:#EEEEEE;border-left:1px solid #BBBBBB;border-right:1px solid #BBBBBB;border-bottom:1px solid #BBBBBB;vertical-align:top;text-align:center;}
  34.         .PRODIMGSMCELL{width:130px;height:125px;background-color:#EEEEEE;border-left:1px solid #BBBBBB;border-right:1px solid #BBBBBB;border-bottom:1px solid #BBBBBB;vertical-align:top;text-align:center;}
  35.         .PRODIMGSM{border:1px solid white;height:120px;width:120px;align:middle;}
  36.         .PRODIMGLG{border:1px solid #BBBBBB;height:290px;width:290px;align:middle;}
  37.         .CATIMG{width:120px;height:120px;border:1px solid #BBBBBB;}
  38.         .stylegreyblue {color: #669999}
  39.         .stylelightblue {color: ##DEE7F7}
  40.         .styleblack {color:#000000}
  41.         .stylegreyblack {color:#444444}
  42.         .styledarkpink {color: #990033}
  43.         .styleslateblue {color: #008b8b}
  44.         .stylewhite {color: #ffffff}
  45.         .input.btn {color:#666666; font: bold small 'trebuchet ms',helvetica,sans-serif; 
  46.         background-color: #eeeeee;
  47.         border:1px solid;   
  48.         border-color: #66CCFF #66CCFF #66CCFF #66CCFF; 
  49.         font-size:11px; 
  50.         }  
  51.  
  52. //a { 
  53. //    position: right; 
  54. //   top: 5pt ; 
  55. //    left: 10pt ; 
  56. //} 
  57.  
  58. //a2 { 
  59. //    position: left; 
  60. //    top: 80pt ; 
  61. //    left: 80pt ; 
  62. //} 
  63.  
  64.  
  65. .style17 {color: #666666}
  66. .style18 {color: #CC6699}
  67. .style19 {color: #CCCCCC}
  68. .style22 {font-family: Verdana; color: #CCCCCC;}
  69. .style23 {color: #66CCFF}
  70. .style24 {
  71.     color: #99FF66;
  72.     font-weight: bold;
  73. }
  74. .style26 {color: #99FF66}
  75. .style27 {color: #999999}
  76. .stylered {color: #FF0000}
  77. .stylegreen {color: #00FF00}
  78.  
  79. </STYLE>
  80.  
  81.  
  82.  
  83. <SCRIPT LANGUAGE="text/JavaScript">
  84.    function FRESHEN() 
  85.  { 
  86.    window.location.reload();
  87. }
  88. </SCRIPT>
  89.  
  90.  
  91.  
  92. <SCRIPT LANGUAGE="text/JavaScript">
  93.    function go_back_1() 
  94.  { 
  95.    history.go(-1); 
  96. }
  97. </SCRIPT>
  98.  
  99.  
  100.  
  101. <SCRIPT LANGUAGE="text/JavaScript">
  102.    function go_back_2() 
  103.  { 
  104.   history.go(-2); 
  105. }
  106. </SCRIPT>
  107.  
  108.  
  109.  
  110.  
  111. <SCRIPT LANGUAGE="text/JavaScript"> 
  112. function showLoc2() 
  113. var a = document.getElementById("link"); 
  114. a.addEventListener("click", go_back_1, false); 
  115. if (window.location.hash == "#top") 
  116.     a.firstChild.nodeValue = "TWO"; 
  117.     a.removeEventListener("click", go_back_1, false); 
  118.     a.addEventListener("click", go_back_2, false); 
  119. </SCRIPT>
  120.  
  121.  
  122. </head>
  123.  
  124.  
  125.  
  126. <!---
  127. <BODY onload = "TOOT();">
  128. -->
  129. <BODY>
  130.  
  131.  
  132.  
  133.  
  134.  
  135. <!---
  136. <a href  "#" onclick = "go_back_1" id="link">ONE</a>  
  137.  
  138. <a href onclick = "go_back_1(this.href);return false" id="link">ONE</a> 
  139. -->
  140.  
  141.  
  142.  
  143. <?php
  144. $count=$_GET['count'];
  145. $fac= strtoupper($_GET['fac']);
  146. $SRG_GROUP=$_GET['SRG_GROUP'];
  147. $SFT=$_GET['SFT'];
  148. ?>
  149.  
  150.  
  151.  
  152.  
  153.  
  154. <br>
  155.  
  156. <table width = "300" height = "10" align = "left" border = "0" class = "border">
  157. <tr>
  158. <td>
  159. <form method="post" name = "searchFORM" action="<?php echo $PHP_SELF;?>">
  160. <span style='color: #008b8b; font-size: 10pt; font-family: arial'>
  161. &nbsp &nbsp <b>search </b><input type="number" size="24" class = "INPUTWHITE" maxlength="20" name="SEARCH" value="<?php echo $_POST['search'];?>"
  162. </span>
  163. <!---
  164. <input type="submit" value=">" name="submit" class = "btn">
  165. -->
  166. &nbsp &nbsp 
  167. <b>
  168. <a href="#" onclick="javascript:document.forms.searchFORM.submit();">go</a>
  169. </b>
  170. </form>
  171. <br>
  172. </td>
  173. </tr>
  174. </table>
  175.  
  176. <br>
  177. <br>
  178. <br>
  179.  
  180.  
  181.  
  182. <?php
  183.  
  184. #echo $_SERVER['REQUEST_URI']
  185. #echo "<a href = 'COUNTTEST.php'>HOME</a><br><br>";
  186.  
  187.  
  188.  
  189.  
  190. echo "<a name=top></a><br>";
  191.  
  192. echo "<A HREF='javascript:javascript:history.go(-1)'>HOME</A><br><br>";
  193.  
  194. $SEARCH = $_POST["SEARCH"];
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. echo "<div align = 'right'><SCRIPT LANGUAGE='JavaScript'>";
  203. echo "   function TOOT() ";
  204. echo " { ";
  205. echo "   var x = window.location.hash; ";
  206. echo "if (x == '#top')"; 
  207. echo "{ ";
  208. echo "document.body.innerHTML += '<a href=\'javascript:javascript:history.go(-2)\'>BACK </a>';";
  209. echo "}";
  210. echo "else";
  211. echo "{";
  212. echo "document.body.innerHTML += '<a href=\'javascript:javascript:history.go(-1)\'>BACK</a>';";
  213. echo "}";
  214. echo "}";
  215. echo "</SCRIPT></div>";
  216.  
  217.  
  218.  
  219. print "<span style='color: #008b8b; font-size: 20pt; font-family: arial'><b>";
  220.  
  221. echo $count;
  222. echo "<br>";
  223. print "</b></span>";
  224. print "<span class='style17'><font face = 'arial' size = '1'>";
  225.  
  226. if(isset($_GET['SFT'])) 
  227. {
  228. echo "<span style='color: #666666; font-size: 8pt; font-family: arial'>$_GET[SFT]</span><br><br>";
  229. }
  230. else
  231. {
  232. echo "<span style='color: #666666; font-size: 8pt; font-family: arial'>all shifts</span><br><br>";
  233. }
  234.  
  235.  
  236.  
  237. echo $fac;
  238. echo "<br>";
  239. echo $SRG_GROUP;
  240. echo "<br><br>";
  241. print "</font></span>";
  242.  
  243.  
  244. #!empty checks if the variable is NOT empty
  245. #if(empty($_GET['SFT']) AND empty($_GET['fac']))
  246. #{
  247. #echo "one";
  248. #}
  249. #elseif(empty($_GET['SFT']) AND !empty($_GET['fac'])) 
  250. #{
  251. #echo "two";
  252. #}
  253. #elseif(isset($_GET['SFT']) AND empty($_GET['fac']))
  254. #{
  255. #echo "three";
  256. #}
  257. #else
  258. #{
  259. #echo "four";
  260. #}
  261.  
  262.  
  263.  
  264. $conn=odbc_connect('ERVOLUMES','','');
  265. if (!$conn)
  266.   {exit("Connection Failed: " . $conn);}
  267.  
  268. #if(isset($_GET['SFT']))
  269.  
  270. #if(empty($_GET['SFT']) AND empty($_GET['fac']))
  271. #{
  272. #$sql="SELECT [patient account number] AS patient_account_number, dischargeday, hospitalcode, age, [discharge time] AS discharge_time FROM 1_shift WHERE SRG_GROUP = '".$SRG_GROUP."' AND admitday ='".$count."'";
  273. #}
  274. #elseif(empty($_GET['SFT']) AND isset($_GET['fac']))
  275. #{
  276. #$sql="SELECT [patient account number] AS patient_account_number, dischargeday, hospitalcode, age, [discharge time] AS discharge_time FROM 1_shift WHERE SRG_GROUP = '".$SRG_GROUP."' AND hospitalcode LIKE '".$fac."' AND admitday ='".$count."'";
  277. #}
  278. #else
  279. #{
  280. #$sql="SELECT [patient account number] AS patient_account_number, dischargeday, hospitalcode, age, admit_shift, [discharge time] AS discharge_time FROM 1_shift WHERE SRG_GROUP = '".$SRG_GROUP."' AND admit_shift = '".$_GET['SFT']."' AND  admitday ='".$count."'";
  281. #}
  282.  
  283.  
  284.  
  285.  
  286. if(empty($_POST['SEARCH']))
  287. {
  288. if(empty($_GET['SFT']) AND empty($_GET['fac']))
  289. {
  290. $sql="SELECT [patient account number] AS patient_account_number, dischargeday, hospitalcode, age, [discharge time] AS discharge_time FROM 1_shift WHERE SRG_GROUP = '".$SRG_GROUP."' AND admitday ='".$count."'";
  291. }
  292. elseif(empty($_GET['SFT']) AND !empty($_GET['fac'])) 
  293. {
  294. $sql="SELECT [patient account number] AS patient_account_number, dischargeday, hospitalcode, age, [discharge time] AS discharge_time FROM 1_shift WHERE SRG_GROUP = '".$SRG_GROUP."' AND hospitalcode LIKE '".$fac."' AND admitday ='".$count."'";
  295. }
  296. elseif(isset($_GET['SFT']) AND empty($_GET['fac']))
  297. {
  298. $sql="SELECT [patient account number] AS patient_account_number, dischargeday, hospitalcode, age, admit_shift, [discharge time] AS discharge_time FROM 1_shift WHERE SRG_GROUP = '".$SRG_GROUP."' AND admit_shift = '".$_GET['SFT']."' AND  admitday ='".$count."'";
  299. }
  300. else
  301. {
  302. $sql="SELECT [patient account number] AS patient_account_number, dischargeday, hospitalcode, age, admit_shift, [discharge time] AS discharge_time FROM 1_shift WHERE SRG_GROUP = '".$SRG_GROUP."' AND admit_shift = '".$_GET['SFT']."' AND hospitalcode LIKE '".$fac."' AND  admitday ='".$count."'";
  303. }
  304. }
  305.  
  306.  
  307.  
  308.  
  309. if(!empty($_POST['SEARCH']))
  310. {
  311. if(empty($_GET['SFT']) AND empty($_GET['fac']))
  312. {
  313. $sql="SELECT [patient account number] AS patient_account_number, dischargeday, hospitalcode, age, [discharge time] AS discharge_time FROM 1_shift WHERE SRG_GROUP = '".$SRG_GROUP."' AND patient_account_number = '12686900' AND admitday ='".$count."'";
  314. }
  315. elseif(empty($_GET['SFT']) AND !empty($_GET['fac'])) 
  316. {
  317. $sql="SELECT [patient account number] AS patient_account_number, dischargeday, hospitalcode, age, [discharge time] AS discharge_time FROM 1_shift WHERE SRG_GROUP = '".$SRG_GROUP."' AND hospitalcode LIKE '".$fac."' AND patient_account_number = '12686900' AND admitday ='".$count."'";
  318. }
  319. elseif(isset($_GET['SFT']) AND empty($_GET['fac']))
  320. {
  321. $sql="SELECT [patient account number] AS patient_account_number, dischargeday, hospitalcode, age, admit_shift, [discharge time] AS discharge_time FROM 1_shift WHERE SRG_GROUP = '".$SRG_GROUP."' AND admit_shift = '".$_GET['SFT']."' AND patient_account_number = '12686900' AND  admitday ='".$count."'";
  322. }
  323. else
  324. {
  325. $sql="SELECT [patient account number] AS patient_account_number, dischargeday, hospitalcode, age, admit_shift, [discharge time] AS discharge_time FROM 1_shift WHERE SRG_GROUP = '".$SRG_GROUP."' AND admit_shift = '".$_GET['SFT']."' AND hospitalcode LIKE '".$fac."' AND patient_account_number = '12686900' AND  admitday ='".$count."'";
  326. }
  327. }
  328.  
  329.  
  330.  
  331. if(!empty($_POST['SEARCH']))
  332. {
  333. print "<span style='color: #008b8b; font-size: 12pt; font-family: arial'><b>";
  334. echo "search results for:";
  335. print "&nbsp";
  336. echo $SEARCH;
  337. print "</b></span>";
  338. }
  339.  
  340.  
  341.  
  342.  
  343. $rs=odbc_exec($conn,$sql);
  344.  
  345.  
  346.  
  347. print "<hr size = 1 width = 400 align = left color = #666666>";
  348. print "<span style='color: #008b8b; font-size: 10pt; font-family: arial'><b>";
  349. echo "details <br>";
  350. print "</b></span>";
  351.  
  352.  
  353. echo "<br><table width = '500' height = '10' align = 'left' border = '0'>";
  354. echo "<tr height = '10'>";
  355. echo "<td width = '100' height = '10'><b>ADMIT DAY</b></td>";
  356. echo "<td width = '100' height = '10'><b>AGE</b></td>";
  357. echo "<td width = '100' height = '10'><b>DISCH DAY</b></td>";
  358. echo "<td width = '100' height = '10'><b>PT ACCT#</b></td>";
  359. echo "<td width = '100' height = '10'><b>DISCH TIME</b></td>";
  360. echo "</tr>";
  361. echo "</table><br>";
  362.  
  363. echo "<br><table width = '500' height = '10' align = 'left' border = '0'>";
  364.  
  365.  
  366. if (!$rs)
  367.   {exit("Error in SQL");}
  368. while (odbc_fetch_row($rs))
  369. {
  370.  
  371.  
  372.   $DISDAY=odbc_result($rs, dischargeday);
  373.   $AGE=odbc_result($rs, age);
  374.   $PTACCTNO=odbc_result($rs, patient_account_number);
  375.   $DISCHTIME=odbc_result($rs, discharge_time);
  376.  
  377.  
  378.  
  379. echo "<tr height = '10'>";
  380. echo "<td width = '100' height = '10'>$count</td>";
  381. echo "<td width = '100' height = '10'>$AGE</td>";
  382. echo "<td width = '100' height = '10'>$DISDAY</td>";
  383. echo "<td width = '100' height = '10'>$PTACCTNO</td>";
  384. echo "<td width = '100' height = '10'>$DISCHTIME</td>";
  385. echo "</tr>";
  386.  
  387.  
  388.  
  389.  
  390. #echo $count;
  391. #echo "&nbsp &nbsp $AGE &nbsp $DISDAY &nbsp $PTACCTNO &nbsp $DISCHTIME<br>";
  392.  
  393.  
  394. }
  395.  
  396.  
  397.  
  398. echo "<tr height = '10'>";
  399. #echo "<td width = '100' height = '10'><br><a href='#top' onClick='window.location.reload( true );'>back to top</a></td>";
  400. echo "<td width = '100' height = '10'><br></td>";
  401. echo "<td width = '100' height = '10'>";
  402.  
  403.  
  404.  
  405. echo "<div align = 'right'><SCRIPT LANGUAGE='JavaScript'>";
  406. echo "   function showLoc() ";
  407. echo " { ";
  408. echo "   var x = window.location.hash; ";
  409. echo "if (x == '#top')"; 
  410. echo "{ ";
  411. echo "document.body.innerHTML += '<a href=\'javascript:javascript:history.go(-2)\'>TWO </a>';";
  412. echo "}";
  413. echo "else";
  414. echo "{";
  415. echo "document.body.innerHTML += '<a href=\'javascript:javascript:history.go(-1)\'>ONE</a>';";
  416. echo "}";
  417. echo "}";
  418. echo "</SCRIPT></div>";
  419.  
  420.  
  421. echo "</td>";
  422. echo "<td width = '100' height = '10'></td>";
  423. echo "<td width = '100' height = '10'></td>";
  424. echo "<td width = '100' height = '10'><b></td><br>";
  425. echo "</tr>";
  426.  
  427.  
  428. echo "</table><br><br><br>";
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435. ?>
  436.  
  437.  
  438.  
  439.  
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449. </html>
  450.  
  451.  
  452.  

error pointing to line 345
Jan 29 '09 #3
nathj
938 Expert 512MB
While we wait <-- post must have crossed in the ether, for the requested code I thought I should pass on some experience I had recently.

I bought a CMS (don't ask why, I should have built the site myself) that used Access as the DB. This was a disaster. Running Access over the web - as I assume you are given that this is a PHP forum - Access can't handle concurrent usage that the web requires.

The only solution was for me to convert the DB to MySQL and now it works a treat. I say a treat there are other issues relating to coding standards but that's another issue.

My word of advice is if your system is web based or needs many users accessing the data at the same time then switch from Access to MySQL or SQL Server now and save yourself from a world of pain.

There you have it, I hope that was helpful.

I should say that you can easily switch the database over using Bullzip converter as I did but beware of special characters.

Cheers
nathj
Jan 29 '09 #4
Markus
6,050 Expert 4TB
Don't need to see the whole thing; just the parts that relate to the query and the error given. Thanks.

Also, outputting all that html is really very unhealthy. Have a look at the Heredoc syntax.
Jan 29 '09 #5
i really think it has something to do with the line 163... not matching up with the correct datatype... or some quotes or something missing in the query string. but im not sure how to fix this.
Jan 30 '09 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

8
by: Polar | last post by:
I am having troubles finding the parse error in this script. I've been checking for weeks. I am too new to the subject I guess. I am trying to show a readord and them have a form at the bottom...
2
by: jaysonsch | last post by:
Hello! I am having some problems with a database query that I am trying to do. I am trying to develop a way to search a database for an entry and then edit the existing values. Upon submit, the...
3
by: Nick Truscott | last post by:
<? // scoreinput.php - input a match score when match selected from list ?> <html> <head> <basefont face="Verdana"> </head> <body>
2
by: Mattyboy | last post by:
Guys I have built a database with saved queries that runs fine in Access but when I call it from the web using ASP, an exception occurs. I have tried multiple ways of testing the databases with...
6
by: Martin Lacoste | last post by:
Ok, before I headbutt the computer... don't know why when I add criteria in a query, I get an 'invalid procedure call'. I also don't know why after searching the help in access, the various access...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.